UNPKG

@iqai/adk-cli

Version:

CLI tool for creating, running, and testing ADK-TS agents

16 lines 490 B
import { CommandRunner } from "nest-commander"; interface WebCommandOptions { port?: number; dir?: string; host?: string; webUrl?: string; } export declare class WebCommand extends CommandRunner { run(_passedParams: string[], options?: WebCommandOptions): Promise<void>; parsePort(val: string): number; parseHost(val: string): string; parseDir(val: string): string; parseWebUrl(val: string): string; } export {}; //# sourceMappingURL=web.command.d.ts.map