Files
Webklar.com/node_modules/@supabase/postgrest-js/dist/cjs/PostgrestError.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

17 lines
410 B
TypeScript

/**
* Error format
*
* {@link https://postgrest.org/en/stable/api.html?highlight=options#errors-and-http-status-codes}
*/
export default class PostgrestError extends Error {
details: string;
hint: string;
code: string;
constructor(context: {
message: string;
details: string;
hint: string;
code: string;
});
}
//# sourceMappingURL=PostgrestError.d.ts.map