eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 355 B
TypeScript
export interface SessionTimeoutWorkflowInput {
readonly deadline: Date;
/** Owner run that armed the timer. */
readonly ownerRunId: string;
readonly token: string;
}
/** Sleeps until the session deadline, then signals its current owner. */
export declare function sessionTimeoutWorkflow(input: SessionTimeoutWorkflowInput): Promise<void>;