UNPKG

@workflow-manager/runner

Version:

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

12 lines (11 loc) 368 B
export interface RunnerSessionFile { baseUrl: string; attachToken: string; runId: string; pid: number; startedAt: string; endedAt?: string; status?: string; } export declare function writeSessionFile(filePath: string, session: RunnerSessionFile): void; export declare function readSessionFile(filePath: string): RunnerSessionFile | string;