UNPKG

eve

Version:

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

8 lines (7 loc) 335 B
interface CleanupSession { readonly sessionId: string | undefined; cleanup(signal: AbortSignal): Promise<void>; } /** Settles each distinct eval-owned root once. */ export declare function cleanupEvalSessions(sessions: readonly CleanupSession[], signal: AbortSignal): Promise<readonly PromiseSettledResult<void>[]>; export {};