UNPKG

332 BJavaScriptView Raw
1class PrismaClient {
2 constructor() {
3 throw new Error(
4 `@prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.
5In case this error is unexpected for you, please report it in https://github.com/prisma/prisma-client-js/issues/390.`,
6 )
7 }
8}
9
10module.exports = {
11 PrismaClient,
12}