以往定义字符串字面量时,只会用到固定形式如 type Color = 'red' | 'blue' | 'green'
,今天无意看到 lib.dom.d.ts 中有些字符串字面量类型的定义非常奇特,可以更精确的表示类型:
1 | type AutoFillSection = `section-${string}`; |
以往定义字符串字面量时,只会用到固定形式如 type Color = 'red' | 'blue' | 'green'
,今天无意看到 lib.dom.d.ts 中有些字符串字面量类型的定义非常奇特,可以更精确的表示类型:
1 | type AutoFillSection = `section-${string}`; |
Author: Az