VueConf Toronto - Join the premier TypeScript conference Register
www 543x .com
资源
官方库
视频课程
帮助
新闻
Appearance
类型别名用来给一个类型起个新名字。
type Name = string; type NameResolver = () => string; type NameOrResolver = Name | NameResolver; function getName(n: NameOrResolver): Name { if (typeof n === 'string') { return n; } else { return n(); } }
上例中,我们使用 type 创建类型别名。
type
类型别名常用于联合类型。
Edit this page on GitHub