From 24fea6589cfbb8d95ea3e18775094ded228295be Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Tue, 30 Jan 2018 13:14:36 -0800 Subject: [PATCH] fix: added helpValue --- src/flags.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/flags.ts b/src/flags.ts index 3676214..c0922ca 100644 --- a/src/flags.ts +++ b/src/flags.ts @@ -19,6 +19,7 @@ export interface IBooleanFlag extends IFlagBase { export interface IOptionFlag extends IFlagBase { type: 'option' optionType: string + helpValue?: string default?: T | ((context: DefaultContext) => T | undefined) multiple: boolean input: string[]