标签: javascript typescript
我想使用javascript库
seedrandom.js
在一个TypeScript项目中,还无法弄清楚如何为这个lib编写一个类型定义,它使用另一种方法扩展了标准的javascript Math库:
Math.seedrandom();
答案 0 :(得分:6)
只需添加到Math界面
Math
interface Math { seedrandom(seed?: string); } Math.seedrandom();