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

[TypeScript] Typescript Interfaces vs Aliases Union & Intersection Types

时间:2017-03-06 21:02:27      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   int   last   ast   sci   example   jonse   union   name   

TypeScript has ‘interface‘ and ‘type‘, so when to use which?

 

interface hasName {
    firstName: string;
    lastName: string;
}

interface hasAddress {
    address: string
}

type Player = (hasName & hasAddress) | null;

let player: Player = {firstName: Joe, lastName: Jonse, address: USA};

    

 

It is recommended that to use ‘interface‘ to define the props that obj should have.

‘type‘ is recommended to use when combine multi interfaces to descide a single object like what we show in example.

[TypeScript] Typescript Interfaces vs Aliases Union & Intersection Types

标签:style   int   last   ast   sci   example   jonse   union   name   

原文地址:http://www.cnblogs.com/Answer1215/p/6511592.html

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