gpt4 book ai didi

javascript - ModuleWithProviders 需要 1 个类型的参数 - angular-autofocus-fix

转载 作者:行者123 更新时间:2023-12-03 18:34:13 29 4
gpt4 key购买 nike

安装后angular-autofocus-fix导入自动对焦模块
当我运行 Angular 项目时,它显示以下错误:

ERROR in node_modules/angular-autofocus-fix/index.d.ts:4:23 - error TS2314: Generic type 'ModuleWithProviders<T>' requires 1 type argument(s).
static forRoot(): ModuleWithProviders
当我 checkin 那个 node_mudule

我在我的项目中使用 angular 10。

最佳答案

通过在 app.module.ts 中添加以下给出的代码片段解决了这个问题

declare module "@angular/core" {
interface ModuleWithProviders<T = any> {
ngModule: Type<T>;
providers?: Provider[];
}
}

@NgModule({
// ......
})
export class AppModule { }
就我而言,这个问题发生在我升级 ng-bootstrap 时。 angular-10 中的版本.

关于javascript - ModuleWithProviders<T> 需要 1 个类型的参数 - angular-autofocus-fix,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63078349/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com