NextJSNetflix/global.d.tsx

7 lines
134 B
TypeScript
Raw Normal View History

2023-06-04 12:33:10 +00:00
import { PrismaClient } from "@prisma/client";
declare global {
namespace globalThis {
var prismadb: PrismaClient
}
}