Files
oh-my-opencode/dist/cli/run/event-stream-processor.d.ts
T
2026-03-14 04:56:50 +00:00

4 lines
214 B
TypeScript

import type { RunContext } from "./types";
import type { EventState } from "./event-state";
export declare function processEvents(ctx: RunContext, stream: AsyncIterable<unknown>, state: EventState): Promise<void>;