mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-21 19:59:39 -05:00
9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
import "@prisma/client";
|
|
|
|
declare module "@prisma/client" {
|
|
namespace Prisma {
|
|
// Prisma exposes this error class at runtime, but the generated client types do not declare it on Prisma.
|
|
const PrismaClientKnownRequestError: typeof import("@prisma/client/runtime/library").PrismaClientKnownRequestError;
|
|
}
|
|
}
|