在api
中,我有以下代码:
extensions.js
在Array.prototype.shuffle = function() {
for (let i = this.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[this[i], this[j]] = [this[j], this[i]];
}
}
中,我导入文件,然后尝试使用新的原型函数:
test.js
不幸的是,导入似乎没有增加Array类型。
[ts]'any []'类型中不存在属性'shuffle'。任何