Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

fix: add missing flag property - multiple #113

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export namespace Command {
type: 'option';
name: string;
required?: boolean;
multiple?: boolean;
char?: string;
hidden?: boolean;
description?: string;
Expand Down Expand Up @@ -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,
Expand Down