每当我执行ng serve或npm start时,都会出现以下错误:错误TS2300:标识符'export ='重复。 在两个文件中。
第一个: module.d.ts
declare module "module" {
export = NodeJS.Module;
}
第二个: index.d.ts
declare module 'module' {
var mod: {
config: () => any;
id: string;
uri: string;
}
export = mod;
}
请提供一些解决方案。 check image for more clarification