强制构造函数签名的接口

时间:2016-10-21 19:23:13

标签: typescript

为什么课程C

class C implements N, M {
  constructor(public a: number) {}
}

不满足接口MN

interface M {
  constructor(a: number)
}
interface N {
  new(a: number)
}

如何编写C满足的界面

0 个答案:

没有答案