From 066962278d980b76cb8aaa779d496de18624797d Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Tue, 10 Apr 2018 02:28:55 -0700 Subject: [PATCH] fix: plugin actually needs to be nullable --- src/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.ts b/src/command.ts index 9868b732..fc2d0858 100644 --- a/src/command.ts +++ b/src/command.ts @@ -62,7 +62,7 @@ export namespace Command { } export interface Class extends Base { - plugin: Config.IPlugin + plugin?: Config.IPlugin flags?: Parser.flags.Input args?: Parser.args.Input new(argv: string[], config: Config.IConfig): Instance