I am trying to include the ViewerModule in my Angular 14 app module as such:
import { ViewerModule } from '@groupdocs.examples.angular/viewer';
and I get this error:
'ViewerModule' does not appear to be an NgModule class.(-996002)
viewer.module.d.ts(10, 53): This likely means that the library (@groupdocs.examples.angular/viewer) which declares ViewerModule has not been processed correctly by ngcc, or is not compatible with Angular Ivy. Check if a newer version of the library is available, and update if so. Also consider checking with the library's authors to see if the library is expected to be compatible with Ivy.
I am trying to include the
ViewerModulein my Angular 14 app module as such:import { ViewerModule } from '@groupdocs.examples.angular/viewer';and I get this error: