UNPKG

eve

Version:

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

7 lines (6 loc) 351 B
import { type DurableSessionState } from "#execution/durable-session-store.js"; /** Cooperatively cancels every task currently indexed by a durable session. */ export declare function cancelAllIndexedSessionTasksStep(input: { readonly serializedContext?: Record<string, unknown>; readonly sessionState: DurableSessionState; }): Promise<void>;