UNPKG

eve

Version:

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

15 lines (14 loc) • 671 B
import type { SessionTimeoutWorkflowInput } from "#execution/session/timeout-workflow.js"; /** Starts the durable timer that signals one session deadline. */ export declare function startSessionTimeoutStep(input: SessionTimeoutWorkflowInput): Promise<{ readonly runId: string; }>; /** Resumes the owning session when its durable timer elapses. */ export declare function signalSessionTimeoutStep(input: { readonly ownerRunId: string; readonly token: string; }): Promise<void>; /** Cancels a timer whose session reached another terminal outcome first. */ export declare function cancelSessionTimeoutStep(input: { readonly runId: string; }): Promise<void>;