eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 443 B
TypeScript
/** Starts workflow-tool runs and framework controls for pending coordination. */
import { type CoordinationDispatchInput, type CoordinationDispatchResult } from "#execution/coordination-dispatch-shared.js";
type CoordinationDispatchStepInput = CoordinationDispatchInput & {
readonly action: "park";
};
export declare function dispatchCoordinationStep(input: CoordinationDispatchStepInput): Promise<CoordinationDispatchResult>;
export {};