| 20 | const __dirname = path.dirname(fileURLToPath(import.meta.url)); |
| 21 | |
| 22 | export interface ServerOptions { |
| 23 | rootDir: string; |
| 24 | host?: string; |
| 25 | port?: number; |
| 26 | runtimeMode?: "standalone" | "embedded"; |
| 27 | } |
| 28 | |
| 29 | type DisconnectEmitter = { |
| 30 | on(event: "disconnect", listener: () => void): unknown; |
nothing calls this directly
no outgoing calls
no test coverage detected