Aktueller Stand
This commit is contained in:
17
backend/node_modules/@prisma/dev/dist/daemon.d.ts
generated
vendored
Normal file
17
backend/node_modules/@prisma/dev/dist/daemon.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Server } from './index.js';
|
||||
import './state.js';
|
||||
import 'valibot';
|
||||
import './db.js';
|
||||
import '@electric-sql/pglite';
|
||||
|
||||
interface DaemonMessageStarted {
|
||||
type: "started";
|
||||
server: Omit<Server, "close">;
|
||||
}
|
||||
interface DaemonMessageError {
|
||||
type: "error";
|
||||
error: string;
|
||||
}
|
||||
type DaemonMessage = DaemonMessageStarted | DaemonMessageError;
|
||||
|
||||
export type { DaemonMessage, DaemonMessageError, DaemonMessageStarted };
|
||||
Reference in New Issue
Block a user