UNPKG

eve

Version:

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

6 lines (5 loc) • 475 B
import type { InputResponse } from "#shared/input.js"; /** Resumed with the bare response, not a session-inbox delivery, so the body can race the hook. */ export declare function resumeWorkflowToolRunAnswers(answerToken: string, responses: readonly InputResponse[] | undefined): Promise<void>; /** Resolves a dismissible `ctx.ask()` request the user moved past without answering. */ export declare function resumeWorkflowToolRunDismissal(answerToken: string): Promise<void>;