10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
type Options = {
|
|
clientVersion: string;
|
|
};
|
|
export declare class PrismaClientValidationError extends Error {
|
|
name: string;
|
|
clientVersion: string;
|
|
constructor(message: string, { clientVersion }: Options);
|
|
get [Symbol.toStringTag](): string;
|
|
}
|
|
export {};
|