D | stringEnumLiteralTypes3.js | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 4 type Yes = Choice.Yes; 5 type YesNo = Choice.Yes | Choice.No; 6 type NoYes = Choice.No | Choice.Yes; 7 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 9 function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument 16 function f2(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument 23 function f3(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument 30 function f4(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument 37 function f5(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument [all …]
|