Could not find a declaration file for module '@editorjs/Header'. 'D:/wap/ANGULAR/editorjs/node_modules/@editorjs/header/dist/bundle.js' implicitly has an 'any' type.
Try npm i --save-dev @types/editorjs__header if it exists or add a new declaration (.d.ts) file containing declare module '@editorjs/Header';ts(7016)
import Header from '@editorjs/Header';
While I tried to build using ng build I found this error. How to solve this problem in angular?
Could not find a declaration file for module '@editorjs/Header'. 'D:/wap/ANGULAR/editorjs/node_modules/@editorjs/header/dist/bundle.js' implicitly has an 'any' type.
Try
npm i --save-dev @types/editorjs__headerif it exists or add a new declaration (.d.ts) file containingdeclare module '@editorjs/Header';ts(7016)While I tried to build using
ng buildI found this error. How to solve this problem in angular?