TypeScript 中为window对象添加属性
作者:互联网
这里其实就是用了全局属性 declare global 和 声明合并两个属性。
直接代码:
window.globalSetTimeout = {};
declare global {
interface Window {
globalSetTimeout: {
[key: string]: NodeJS.Timeout;
};
aaa: boolean;
}
}
再来使用一下也不会有报错提示了:
标签:globalSetTimeout,TypeScript,global,window,报错,属性,declare,中为 来源: https://blog.csdn.net/weixin_40548203/article/details/120767696