摘要:
1. type可以声明 基本类型,联合类型,元组 的别名,interface不行 // 基本类型别名 type Name = string // 联合类型 interface Dog { wong(); } interface Cat { miao(); } type Pet = Dog | Cat 阅读全文
摘要:
1. 声明合并 ts声明的重名的类或命名空间,会进行合并 类合并 interface Box { height: number; width: number; } interface Box { scale: number; } let box: Box = {height: 5, width: 6 阅读全文