此文件中出现错误,但是我没有发现任何错误,是吗? 我逐个删除每个语句,直到文件为空,错误才消失。
global.d.ts
declare module '*.scss' {
const content: {[className: string]: string};
export = content;
}
declare global {
type Dictionary<T> = {[key: string]: T};
}
type GenericFunction = (...any: any[]) => any;
type GenericObject = {
[key: string]: string
}
declare global {
interface Window {
addEventListener:any;
adEventListener:any
}
}
还有第二个问题。您是否应该将声明全局项目嵌套在一个“全局”下? ((顺便说一句,我确实嵌套了,但这并不能解决问题))。