@iqai/adk-cli
Version:
CLI tool for creating, running, and testing ADK-TS agents
14 lines • 475 B
TypeScript
import { HotReloadService } from "./hot-reload.service";
type SseWritable = {
setHeader?: (name: string, value: string) => void;
write: (chunk: any) => boolean;
end: () => void;
on: (event: string, listener: (...args: any[]) => void) => any;
};
export declare class ReloadController {
private readonly hotReload;
constructor(hotReload: HotReloadService);
stream(res: SseWritable): void;
}
export {};
//# sourceMappingURL=reload.controller.d.ts.map