0
class ExtendSet<T> extends Set<any> {
constructor(value: any) {
super(value);
}
}
var s = new ExtendSet([1, 2, 3, 4, 5]);
console.log(s);
類型錯誤:構造函數中設置需要「新」如何從本地構造打字稿延長
其實,我只是想延長集對象的一些方法,如指定者():任何[]
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"sourceMap": true,
"types": [
"mocha",
"node",
"typescript",
"core-js"
]
},
"exclude": [
"node_modules"
]
}
我想從Set類擴展一個新的類,而不是寫在原始構造函數 – axetroy