Home
last modified time | relevance | path

Searched refs:argsDescription (Results 1 – 2 of 2) sorted by relevance

/plugin/asciidocjs/node_modules/commander/
Dindex.js1208 description(str, argsDescription) { argument
1209 if (str === undefined && argsDescription === undefined) return this._description;
1211 this._argsDescription = argsDescription;
1474 const argsDescription = this._argsDescription;
1475 if (argsDescription && this._args.length) {
1482 …desc.push(' ' + pad(arg.name, width) + ' ' + wrap(argsDescription[arg.name], descriptionWidth, w…
/plugin/asciidocjs/node_modules/commander/typings/
Dindex.d.ts269 description(str: string, argsDescription?: {[argName: string]: string}): this;