UNPKG

eve

Version:

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

8 lines (7 loc) • 451 B
import type { SessionStateTransition } from "#execution/session/state-cursor.js"; 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<SessionStateTransition>;