TypeScript 类型别名
2024年11月8日...小于 1 分钟
TypeScript 类型别名
使用 type
关键字来定义类型别名。
type Age = number
let age: Age = 55
别名不允许重名。
别名的作用域是块级作用域。
type Color = "red"
if (Math.random() < 0.5) {
type Color = "blue"
}
别名支持使用表达式,也可以在定义一个别名时,使用另一个别名,即别名允许嵌套。
type World = "world"
type Greeting = `hello ${World}`
Powered by Waline v3.3.2