4 lines
214 B
TypeScript
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>;
|