TypeScript 当中 interface 和 type 的区别
摘要:
1.type 可以用来声明类型别名, interface 不行 type Dog = { name: string age: number } type Cat = { breed: string } type Animal = Dog | Cat 2.type 可以使用计算属性, interfac 阅读全文
posted @ 2021-04-13 22:44 就让风继续吹吧 阅读(127) 评论(0) 推荐(0) 编辑