UNPKG

@workflow-manager/runner

Version:

CLI runner for in-memory and markdown workflow orchestration using ATEP-like envelopes

8 lines (7 loc) 273 B
import type { RunEvent } from "./types.js"; export declare class EventLog { private sequence; private events; push(runId: string, type: RunEvent["type"], payload?: Record<string, unknown>, stepRunId?: string, actor?: string): RunEvent; all(): RunEvent[]; }