@mariozechner/pi-coding-agent
Version:
Coding agent CLI with read, bash, edit, write tools and session management
9 lines • 326 B
TypeScript
export interface EventBus {
emit(channel: string, data: unknown): void;
on(channel: string, handler: (data: unknown) => void): () => void;
}
export interface EventBusController extends EventBus {
clear(): void;
}
export declare function createEventBus(): EventBusController;
//# sourceMappingURL=event-bus.d.ts.map