UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

16 lines (15 loc) 719 B
import { type RuntimeCompiledArtifactsSource } from "#runtime/compiled-artifacts-source.js"; export declare function startDevelopmentSandboxPrewarmInBackground(input: { readonly appRoot: string; readonly compiledArtifactsSource: RuntimeCompiledArtifactsSource; readonly log?: (message: string) => void; }): void; export declare function subscribeDevelopmentSandboxPrewarmLogs(input: { readonly appRoot: string; readonly log: (message: string) => void; }): () => void; export declare function waitForDevelopmentSandboxPrewarm(input: { readonly appRoot: string; readonly compiledArtifactsSource: RuntimeCompiledArtifactsSource; readonly log?: (message: string) => void; }): Promise<void>;