Initial commit
This commit is contained in:
commit
b3a51a4115
10336 changed files with 2381973 additions and 0 deletions
16
node_modules/@prisma/client-runtime-utils/dist/errors/PrismaClientKnownRequestError.d.ts
generated
vendored
Normal file
16
node_modules/@prisma/client-runtime-utils/dist/errors/PrismaClientKnownRequestError.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { ErrorWithBatchIndex } from './ErrorWithBatchIndex';
|
||||
type KnownErrorParams = {
|
||||
code: string;
|
||||
clientVersion: string;
|
||||
meta?: Record<string, unknown>;
|
||||
batchRequestIdx?: number;
|
||||
};
|
||||
export declare class PrismaClientKnownRequestError extends Error implements ErrorWithBatchIndex {
|
||||
code: string;
|
||||
meta?: Record<string, unknown>;
|
||||
clientVersion: string;
|
||||
batchRequestIdx?: number;
|
||||
constructor(message: string, { code, clientVersion, meta, batchRequestIdx }: KnownErrorParams);
|
||||
get [Symbol.toStringTag](): string;
|
||||
}
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue