typescript 打字稿接口继承

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 打字稿接口继承相关的知识,希望对你有一定的参考价值。

interface Mother { 
   eyeColor:string 
} 
 
interface Father { 
   hairColor:string 
} 
 
interface Child extends Mother, Father { } 
 
var junior:Child = { eyeColor:'Brown', hairColor:'Black'} 
 
console.log(junior.eyeColor + ' ' + junior.hairColor)

以上是关于typescript 打字稿接口继承的主要内容,如果未能解决你的问题,请参考以下文章

打字稿类型定义 - 继承

带有继承的打字稿装饰器

离子 2 - 打字稿 |填充接口对象数组

打字稿:将 JSON 对象转换为类/接口对象

通用打字稿组件继承组件道具

如何使用带有角度依赖注入的打字稿继承