本文整理汇总了TypeScript中yargs.options函数的典型用法代码示例。如果您正苦于以下问题:TypeScript options函数的具体用法?TypeScript options怎么用?TypeScript options使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了options函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: simpleActionsCli
export function simpleActionsCli(y: yargs.Argv, state: GpgMockState): yargs.Argv {
state.onParsed(quickAddKeyAction);
state.onParsed(exportSecretKeyAction);
state.onParsed(exportAction);
state.onParsed(exportSshKeyAction);
state.onParsed(deleteSecretKeyAction);
state.onParsed(deleteKeyAction);
return yargs.options({
'quick-addkey': { describe: 'quick-addkey action', boolean: true },
'export-secret-key': { describe: 'export secret key', type: 'string' },
export: { describe: 'export public key', type: 'string' },
'export-ssh-key': { describe: 'export ssh public key', type: 'string' },
'delete-secret-key': { describe: 'delete secret key', type: 'string' },
'delete-key': { describe: 'delete key', type: 'string' }
});
}
开发者ID:mabels,项目名称:clavator,代码行数:16,代码来源:simple-actions.ts
示例2:
function Argv$options() {
var argv1 = yargs
.options('f', {
alias: 'file',
default: '/etc/passwd',
defaultDescription: 'The /etc/passwd file',
group: 'files',
normalize: true,
global: false,
array: true,
nargs: 3
})
.argv
;
var argv2 = yargs
.alias('f', 'file')
.default('f', '/etc/passwd')
.argv
;
}
开发者ID:CNManning,项目名称:DefinitelyTyped,代码行数:21,代码来源:yargs-tests.ts
示例3:
function Argv$options() {
let argv1 = yargs
.options('f', {
alias: 'file',
default: '/etc/passwd',
defaultDescription: 'The /etc/passwd file',
group: 'files',
normalize: true,
global: false,
array: true,
nargs: 3,
implies: 'other-arg',
conflicts: 'conflicting-arg',
})
.argv
;
let argv2 = yargs
.alias('f', 'file')
.default('f', '/etc/passwd')
.argv
;
}
开发者ID:markusmauch,项目名称:DefinitelyTyped,代码行数:23,代码来源:yargs-tests.ts
示例4: require
import * as yargs from "yargs";
require("pkginfo")(module, "version");
yargs
.options({
watch: {
alias: "w",
describe: "Watch the input files for changes",
type: "boolean",
default: false
},
config: {
alias: "cfg",
describe: "The path to the config .js file.",
type: "string"
},
verbose: {
alias: "v",
type: "boolean",
describe: "verbose mode"
},
stdout: {
type: "boolean",
describe: "Export data to stdout"
}
})
.commandDir("commands")
.help()
.version(module.exports.version).argv;
开发者ID:christianvoigt,项目名称:argdown,代码行数:29,代码来源:cli.ts
注:本文中的yargs.options函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论