|
| 1 | +=== /node_modules/.prisma/client/index.d.ts === |
| 2 | +export interface PrismaClientOptions { |
| 3 | +>PrismaClientOptions : Symbol(PrismaClientOptions, Decl(index.d.ts, 0, 0)) |
| 4 | + |
| 5 | + rejectOnNotFound?: any; |
| 6 | +>rejectOnNotFound : Symbol(PrismaClientOptions.rejectOnNotFound, Decl(index.d.ts, 0, 38)) |
| 7 | +} |
| 8 | + |
| 9 | +export class PrismaClient<T extends PrismaClientOptions = PrismaClientOptions> { |
| 10 | +>PrismaClient : Symbol(PrismaClient, Decl(index.d.ts, 2, 1)) |
| 11 | +>T : Symbol(T, Decl(index.d.ts, 4, 26)) |
| 12 | +>PrismaClientOptions : Symbol(PrismaClientOptions, Decl(index.d.ts, 0, 0)) |
| 13 | +>PrismaClientOptions : Symbol(PrismaClientOptions, Decl(index.d.ts, 0, 0)) |
| 14 | + |
| 15 | + private fetcher; |
| 16 | +>fetcher : Symbol(PrismaClient.fetcher, Decl(index.d.ts, 4, 80)) |
| 17 | +} |
| 18 | + |
| 19 | +=== /node_modules/@prisma/client/index.d.ts === |
| 20 | +export * from ".prisma/client"; |
| 21 | +No type information for this code. |
| 22 | +No type information for this code.=== /index.ts === |
| 23 | +import { PrismaClient } from "@prisma/client"; |
| 24 | +>PrismaClient : Symbol(PrismaClient, Decl(index.ts, 0, 8)) |
| 25 | + |
| 26 | +declare const enhancePrisma: <TPrismaClientCtor>(client: TPrismaClientCtor) => TPrismaClientCtor & { enhanced: unknown }; |
| 27 | +>enhancePrisma : Symbol(enhancePrisma, Decl(index.ts, 1, 13)) |
| 28 | +>TPrismaClientCtor : Symbol(TPrismaClientCtor, Decl(index.ts, 1, 30)) |
| 29 | +>client : Symbol(client, Decl(index.ts, 1, 49)) |
| 30 | +>TPrismaClientCtor : Symbol(TPrismaClientCtor, Decl(index.ts, 1, 30)) |
| 31 | +>TPrismaClientCtor : Symbol(TPrismaClientCtor, Decl(index.ts, 1, 30)) |
| 32 | +>enhanced : Symbol(enhanced, Decl(index.ts, 1, 100)) |
| 33 | + |
| 34 | +const EnhancedPrisma = enhancePrisma(PrismaClient); |
| 35 | +>EnhancedPrisma : Symbol(EnhancedPrisma, Decl(index.ts, 2, 5)) |
| 36 | +>enhancePrisma : Symbol(enhancePrisma, Decl(index.ts, 1, 13)) |
| 37 | +>PrismaClient : Symbol(PrismaClient, Decl(index.ts, 0, 8)) |
| 38 | + |
| 39 | +export default new EnhancedPrisma(); |
| 40 | +>EnhancedPrisma : Symbol(EnhancedPrisma, Decl(index.ts, 2, 5)) |
| 41 | + |
0 commit comments