Im having this errors while compiling my project
Error: node_modules/ngx-quill/lib/quill-editor.component.d.ts:3:21 - error TS2614: Module '"quill"' has no exported member 'Delta'. Did you mean to use 'import Delta from "quill"' instead?
3 import QuillType, { Delta } from 'quill';
Error: node_modules/quill-delta/dist/Delta.d.ts:1:8 - error TS1259: Module '"C:/ProyectoAgroSintesis/AgroCMS/node_modules/fast-diff/diff"' can only be default-imported using the 'allowSyntheticDefaultImports' flag
1 import diff from 'fast-diff'; ~~~~
node_modules/fast-diff/diff.d.ts:20:1 20 export = diff; ~~~~~~~~~~~~~~ This module is declared with using 'export =', and can only be used with a default import when using the 'allowSyntheticDefaultImports' flag.
I dont know how to fix this, I installed quill following quill instructions in npm page
To resolve this error for ngx-quill@16.2.1 and angular 13.1.2, you need to ensure you install the correct version of @types/quill and quill
Detailed installed instructions can be found here