/** * CLI 示例类 * * @export * @class CLIExample */ export declare class CLIExample { command: string; baseCommandName: string; content: string[]; /** * Creates an instance of CLIExample. * @param {string} command 命令行名称 * @memberof CLIExample */ constructor(command: string, baseCommandName?: string); /** * 分组 * * @param {string} group 组名称 * @returns * @memberof CLIExample */ group(group: string): CLIExample; /** * 规则 * * @param {string} rule 规则名称 * @param {string} [comment] 规则说明 * @returns * @memberof CLIExample */ rule(rule: string, comment?: string): CLIExample; toString(): string; }