UNPKG

eve

Version:

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

10 lines (9 loc) 634 B
import type { SandboxSourceRef } from "#discover/manifest.js"; import type { CompiledSandboxDefinition } from "#compiler/manifest.js"; import { type ModuleBackedDefinitionLoadOptions } from "#compiler/normalize-helpers.js"; /** * Compiles one authored sandbox module into the normalized sandbox * definition stored on the compiled agent manifest. */ export declare function compileSandboxDefinition(_agentRoot: string, source: SandboxSourceRef, options: ModuleBackedDefinitionLoadOptions): Promise<CompiledSandboxDefinition>; export declare function resolveParentSandboxSelector(value: unknown, message: string): Promise<boolean>;