From e90d95db23dd4d76cfe9df8f325dfe9c32636327 Mon Sep 17 00:00:00 2001 From: Munif Tanjim Date: Sun, 21 Jun 2020 02:13:09 +0600 Subject: [PATCH] fix: add missing flag property - multiple --- src/command.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/command.ts b/src/command.ts index 18ca5c28..3ec118aa 100644 --- a/src/command.ts +++ b/src/command.ts @@ -44,6 +44,7 @@ export namespace Command { type: 'option'; name: string; required?: boolean; + multiple?: boolean; char?: string; hidden?: boolean; description?: string; @@ -111,6 +112,7 @@ export namespace Command { description: flag.description, hidden: flag.hidden, required: flag.required, + multiple: flag.multiple, helpLabel: flag.helpLabel, helpValue: flag.helpValue, options: flag.options,