i am using angular v10 and "angular-tree-component": "^8.5.6"
.but getting build error:
ERROR in node_modules/angular-tree-component/dist/angular-tree-component.d.ts:25:23 - error TS2314: Generic type 'ModuleWithProviders<T>' requires 1 type argument(s).
25 static forRoot(): ModuleWithProviders;
Using in the application like this
@NgModule({
imports: [TreeModule],
exports: [TreeModule]
})
export class SharedModule { }
anything i have to do modification?
Thanks.