/** * Configuration injected by the daemon via the Vite plugin. * Passed to ExplorerApp as `options.daemonConfig`. */ export interface DaemonConfig { /** Name of the session this explorer instance belongs to (e.g. 'current' or 'baseline') */ readonly sessionName: string; /** Daemon API version served by the daemon process. */ readonly daemonApiVersion: string; /** Runtime version required by the vite plugin for the explorer bundle it serves. */ readonly runtimeVersionNeededByPlugin: string; } //# sourceMappingURL=DaemonConfig.d.ts.map