Files
oh-my-opencode/dist/cli/run/event-stream-processor.d.ts
T

4 lines
214 B
TypeScript
Raw Normal View History

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