UNPKG

eve

Version:

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

7 lines (6 loc) 321 B
import type { SandboxSession } from "#shared/sandbox-session.js"; /** * Returns a sandbox session that applies `abortSignal` to every operation. * Per-call signals are composed with the bound signal. */ export declare function bindSandboxAbortSignal(session: SandboxSession, abortSignal: AbortSignal): SandboxSession;