eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 341 B
TypeScript
import type { WorkflowToolRunRef } from "#execution/tools/workflow/messages.js";
import type { JsonValue } from "#shared/json.js";
export declare function emitWorkflowToolRunReportStep(input: {
readonly from: WorkflowToolRunRef;
readonly parentWritable: WritableStream<Uint8Array>;
readonly update: JsonValue;
}): Promise<void>;