我正在尝试扩展打字稿中的Vue.Component类型以添加两个自定义属性:bind和unbind
这就是我尝试过的
import Vue from "vue"
interface CustomComponent extends Vue.Component {
bind: Function,
unbind: Function
}
可悲的是我得到了这个错误
An interface can only extend an object type or intersection of object types with statically known members.
怎么了?谢谢