码迷,mamicode.com
首页 > 其他好文 > 详细

typescript交叉类型类型冲突

时间:2020-02-12 12:57:26      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:int   type   strong   ring   mic   esc   bsp   var   class   

当交叉类型的多个类型发生冲突时,例如:

技术图片

 

 

冲突的属性类型会变为交叉类型,上例中的属性name会变为:string & number,鉴于string & number属性太过少见,已下例为示:

interface ia {
  name: {attr1: string};
}
interface ib {
  name: {attr2: number};
  age: number;
}
type a= ia & ib;
var s:a= {name: {attr1: ‘11‘,attr2: 22},age: 16}
console.log(s)

 

typescript交叉类型类型冲突

标签:int   type   strong   ring   mic   esc   bsp   var   class   

原文地址:https://www.cnblogs.com/yanze/p/12298274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!