wangdoc / typescript-tutorial

TypeScript 教程
https://wangdoc.com/typescript
2.49k stars 269 forks source link

关于TypeScript 类型运算符部分的模板字符串的可引用类型问题 #101

Closed CaiSijian closed 7 months ago

CaiSijian commented 7 months ago

原文: 注意,模板字符串可以引用的类型一共6种,分别是 string、number、bigint、boolean、null、undefined。引用这6种以外的类型会报错。 事实上,经过我测试,引用这六种之外的枚举类型,不会报错,可以解析。 例子: enum e2 { a = 'a', b = 'b' } type t = w ${e2} // "w a" | "w b" 故此,望改正。 你的读者 2024年3月19日

ruanyf commented 7 months ago

谢谢补充,我已经加进去了。