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,