使用Typescript 2在导入的文件中扩展数组

时间:2018-05-25 19:10:42

标签: typescript

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'。任何

0 个答案:

没有答案