TenantAtlas/apps/platform/.pnpm-store/v10/files/3e/05ca8b8de9578c08ee9adf4898baf6189eec576f802fee59f5912850ff2fc49a23f3363280ac57906678d0322f6db4628a924b66088e8f70108fb522a45863
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

19 lines
566 B
Plaintext

import { entityKind } from "./entity.cjs";
export declare class DrizzleError extends Error {
static readonly [entityKind]: string;
constructor({ message, cause }: {
message?: string;
cause?: unknown;
});
}
export declare class DrizzleQueryError extends Error {
query: string;
params: any[];
cause?: Error | undefined;
constructor(query: string, params: any[], cause?: Error | undefined);
}
export declare class TransactionRollbackError extends DrizzleError {
static readonly [entityKind]: string;
constructor();
}