Add Argv#command(...) to yargs

This commit is contained in:
Christopher Brown 2015-05-03 23:18:08 -05:00
parent f3244190e2
commit aeedf99784

2
yargs/yargs.d.ts vendored
View File

@ -53,6 +53,8 @@ declare module "yargs" {
usage(message: string, options?: { [key: string]: Options }): Argv;
usage(options?: { [key: string]: Options }): Argv;
command(command: string, description: string): Argv;
example(command: string, description: string): Argv;
check(func: (argv: { [key: string]: any }, aliases: { [alias: string]: string }) => boolean): Argv;