UNPKG

eve

Version:

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

11 lines (10 loc) 652 B
import type { VercelCreateOptions } from "#execution/sandbox/bindings/vercel-sdk-types.js"; import type { SandboxBackendTags } from "#public/definitions/sandbox-backend.js"; export declare function resolveVercelSandboxTags(userTags: VercelCreateOptions["tags"], eveTags: SandboxBackendTags | undefined): Record<string, string> | undefined; export declare function ensureVercelSandboxTags(sandbox: { readonly tags?: Record<string, string>; update(options: { tags: Record<string, string>; }): Promise<unknown>; }, tags: Record<string, string> | undefined): Promise<void>; export declare function errorMessage(error: unknown): string;