eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
14 lines (13 loc) • 892 B
TypeScript
import type { RuntimeCompiledArtifactsSource } from "#runtime/compiled-artifacts-source.js";
import { type SandboxPreparedArtifactEntry, type SandboxPreparedArtifactsManifest } from "#shared/sandbox-prepared-artifacts.js";
import type { SandboxPreparedArtifact } from "#shared/sandbox-provider.js";
export declare function writeSandboxPreparedArtifactsManifest(input: {
readonly compileDirectoryPath: string;
readonly entries: readonly SandboxPreparedArtifactEntry[];
}): Promise<void>;
export declare function loadSandboxPreparedArtifact(input: {
readonly compiledArtifactsSource: RuntimeCompiledArtifactsSource;
readonly nodeId: string;
readonly providerName: string;
}): Promise<SandboxPreparedArtifact | undefined>;
export declare function loadSandboxPreparedArtifactsManifest(source: RuntimeCompiledArtifactsSource): Promise<SandboxPreparedArtifactsManifest | null>;