From 223a26d5b89a21450081286637650cb6c696be4e Mon Sep 17 00:00:00 2001 From: Philipe Navarro Date: Tue, 28 Apr 2020 10:21:35 -0700 Subject: [PATCH] fix: use args.Input to accept any type args --- src/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.ts b/src/command.ts index 303ee881..4513a729 100644 --- a/src/command.ts +++ b/src/command.ts @@ -58,7 +58,7 @@ export default abstract class Command { static flags?: flags.Input /** An order-dependent array of arguments for the command */ - static args?: Parser.args.IArg[] + static args?: Parser.args.Input static plugin: Config.IPlugin | undefined