UNPKG

eve

Version:

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

10 lines (9 loc) • 405 B
import type { SessionCommand } from "#channel/types.js"; /** Settles side effects owned by a session candidate that lost its continuation claim. */ export declare function settleContinuationConflictStep(input: { readonly activityCollectorRunId?: string; readonly command?: Extract<SessionCommand, { readonly kind: "send"; }>; readonly continuationToken: string; }): Promise<void>;