You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/types.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2531,7 +2531,7 @@ namespace ts {
2531
2531
/* @internal */
2532
2532
exportinterfaceCommandLineOptionBase{
2533
2533
name: string;
2534
-
type: "string"|"number"|"boolean"|"object"|"list"|Map<number>;// a value of a primitive type, or an object literal mapping named values to actual values
2534
+
type: "string"|"number"|"boolean"|"object"|"list"|Map<number|string>;// a value of a primitive type, or an object literal mapping named values to actual values
2535
2535
isFilePath?: boolean;// True if option value is a path or fileName
2536
2536
shortName?: string;// A short mnemonic for convenience - for instance, 'h' can be used in place of 'help'
2537
2537
description?: DiagnosticMessage;// The message describing what the command line switch does
0 commit comments