UNPKG

eve

Version:

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

7 lines (6 loc) 272 B
export interface SessionTimeoutWorkflowInput { readonly deadline: Date; readonly token: string; } /** Sleeps until the session deadline, then signals its driver. */ export declare function sessionTimeoutWorkflow(input: SessionTimeoutWorkflowInput): Promise<void>;