/** * 命令行参数解析工具 */ export interface IProxyServerArgs { token?: string; port?: number; wsPort?: number; } export interface IClientAgentArgs { clientId?: string; token?: string; proxyUrl?: string; server?: string; } /** * 解析Proxy Server命令行参数 */ export declare function parseProxyServerArgs(): IProxyServerArgs; /** * 解析Client Agent命令行参数 */ export declare function parseClientAgentArgs(): IClientAgentArgs; //# sourceMappingURL=args-parser.d.ts.map