UNPKG

eve

Version:

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

13 lines (12 loc) • 900 B
import type { VercelSandboxCreateOptions, VercelSandboxRuntimeOptions } from "#public/sandbox/vercel-sandbox.js"; import type { SandboxEnvironment } from "#shared/sandbox-environment.js"; import type { MutableNetworkSandboxSession, SandboxSession } from "#shared/sandbox-session.js"; export type VercelSandboxEnvironmentOptions = VercelSandboxCreateOptions & { readonly prepare?: (sandbox: SandboxSession) => Promise<void> | void; }; export type { VercelSandboxRuntimeOptions } from "#public/sandbox/vercel-sandbox.js"; export declare function createDefaultVercelEnvironment(options?: VercelSandboxEnvironmentOptions): SandboxEnvironment<VercelSandboxRuntimeOptions, MutableNetworkSandboxSession>; export declare const VercelSandbox: { name: string; environment(options?: VercelSandboxEnvironmentOptions): SandboxEnvironment<VercelSandboxRuntimeOptions, MutableNetworkSandboxSession>; };