/** * This file is copied from * https://github.com/lucasthevenet/pglite-utils/blob/97a566f7df47841845ff8e3c3a61f5b40f5a9e98/packages/prisma-adapter/src/errors.ts * * Which has the MIT license, author `Lucas Thevenet `. It has been modified * slightly to pass this package's ESLint and TypeScript settings. */ import { type Error as DriverAdapterErrorObject } from '@prisma/driver-adapter-utils'; export declare function convertDriverError(error: unknown): DriverAdapterErrorObject;