From f83696dad08f34cb6d8f1cb2c7030428d71094c3 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Wed, 31 Jan 2018 17:59:54 -0800 Subject: [PATCH] fix: add helpValue to flag --- src/command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/command.ts b/src/command.ts index 13008525..02f788bc 100644 --- a/src/command.ts +++ b/src/command.ts @@ -54,6 +54,7 @@ export interface ICachedOptionFlag { char?: string hidden?: boolean description?: string + helpValue?: string } export type ICachedFlag = ICachedBooleanFlag | ICachedOptionFlag