I recently encountered an issue while trying to incorporate the ng2-table grid library into my Angular 10 application. During compilation, I came across the following error message:
ERROR in node_modules/ng2-table/components/table/ng-table-filtering.directive.d.ts:1:36
- error TS2724: Module '"../../../@angular/core/core"' has no exported member 'Renderer'. Did you mean 'Renderer2'?
1 import { EventEmitter, ElementRef, Renderer } from '@angular/core'; ~~~~~~~~
node_modules/@angular/core/core.d.ts:5964:31 5964 export declare abstract class Renderer2 { ~~~~~~~~~ 'Renderer2' is declared here.
If anyone has suggestions on how to resolve this issue, please let me know!