From 32048ca5ac45a6855484178ba86f294828d16e6a Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Wed, 16 Sep 2015 10:57:54 +1000 Subject: [PATCH] fix types : export the base as children are exported --- src/compiler/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/types.ts b/src/compiler/types.ts index fd9adc331d3..d2757bb7937 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -2116,7 +2116,7 @@ namespace ts { } /* @internal */ - interface CommandLineOptionBase { + export interface CommandLineOptionBase { name: string; type: string | Map; // "string", "number", "boolean", or an object literal mapping named values to actual values isFilePath?: boolean; // True if option value is a path or fileName