Initial commit
This commit is contained in:
commit
b3a51a4115
10336 changed files with 2381973 additions and 0 deletions
17
node_modules/@prisma/dev/dist/daemon.d.cts
generated
vendored
Normal file
17
node_modules/@prisma/dev/dist/daemon.d.cts
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { Server } from './index.cjs';
|
||||
import './state.cjs';
|
||||
import 'valibot';
|
||||
import './db.cjs';
|
||||
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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue