11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
class PrismaClient {
|
|
constructor() {
|
|
throw new Error(
|
|
`@prisma/client/deno/edge did not initialize yet. Please run "prisma generate --data-proxy" and try to import it again.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)
|
|
}
|
|
}
|
|
|
|
export { PrismaClient }
|