I am new to Angular 2 and TypeScript. I use AngularCLI and NPM to create my Angular project. I used NPM to install the quill node module in my project. Now I am trying to create a component in which I can configure my message editor through my API.
I am trying to use:
import * as Quill from 'quill';
This returns the error 'can not find quill module'.
I have already added
"": "0.0.26",
"quill": "^1.0.4",
to package.json as dependencies.
source
share