TypeScript - 扩展标准lib Math的类型定义

时间:2015-06-28 08:01:20

标签: javascript typescript

我想使用javascript库

seedrandom.js

在一个TypeScript项目中,还无法弄清楚如何为这个lib编写一个类型定义,它使用另一种方法扩展了标准的javascript Math库:

Math.seedrandom();

1 个答案:

答案 0 :(得分:6)

只需添加到Math界面

即可
interface Math {
    seedrandom(seed?: string);
}

Math.seedrandom();