eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
7 lines (6 loc) • 341 B
TypeScript
import { type DurableSessionState } from "#execution/durable-session-store.js";
/** Cancels every successfully adopted child in the current pending batch. */
export declare function cancelDescendantTurnsStep(input: {
readonly serializedContext: Record<string, unknown>;
readonly sessionState: DurableSessionState;
}): Promise<void>;