@nestjs-mod/prisma
Version:
Next-generation Node.js and TypeScript ORM for NestJS-mod (preview version only for Postgres)
39 lines • 786 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PrismaClient = exports.FakePrismaClient = void 0;
class FakePrismaClient {
constructor(options) {
this.fakeClient = true;
// null
}
$on() {
// null
}
async $connect() {
// null
}
async $disconnect() {
// null
}
async $queryRaw() {
// null
}
async $executeRaw() {
// null
}
async $queryRawUnsafe() {
// null
}
async $executeRawUnsafe() {
// null
}
async $transaction() {
// null
}
$use() {
// null
}
}
exports.FakePrismaClient = FakePrismaClient;
exports.PrismaClient = FakePrismaClient;
//# sourceMappingURL=fake-prisma_client.js.map