eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
7 lines (6 loc) • 311 B
TypeScript
import type { TurnCancelPayload } from "#execution/turn-cancellation-token.js";
/** Forwards an inbox cancellation command to one private active-turn hook. */
export declare function forwardTurnCancellationStep(input: {
readonly payload: TurnCancelPayload;
readonly token: string;
}): Promise<boolean>;