/** * @file 命令行参数解析 * @author cxtom */ export interface Args { _: any[]; '--': any[]; port: number | string; debug: boolean; help: boolean; debugPort: number; debugHost: string; address: string; socket: string; pluginOptions: { [key: string]: any; }; appDir: string; appPrefix: string; appName: string; healthcheckPath: string; subApp: boolean; repo: string; } export default function (args: string[]): Args;