From 63011e58f1bd45f5e08de6cbf03cad5135705b76 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Sat, 3 Feb 2018 04:16:09 -0800 Subject: [PATCH] fix: added constructor --- src/command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/command.ts b/src/command.ts index 5ce9e78b..dded9ff9 100644 --- a/src/command.ts +++ b/src/command.ts @@ -61,6 +61,7 @@ export namespace Command { plugin?: Config.IPlugin flags?: Parser.flags.Input args?: Parser.args.Input + new(argv: string[], config?: Config.Options): T run(argv: string[], config?: Config.Options): Promise }