You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation suggests that Quill's modules can be imported like this (example from linked documentation page):
import{Delta}from'quill';
However, that flat out doesn't work as Delta and other relevant types aren't exported. Only the clunky Quill.import syntax actually works for importing those modules.
The text was updated successfully, but these errors were encountered:
Good catch! You can either import Delta via Quill.import() and import { Delta } from 'quill/core'; but we should support import { Delta } from 'quill';
The documentation suggests that Quill's modules can be imported like this (example from linked documentation page):
However, that flat out doesn't work as
Delta
and other relevant types aren't exported. Only the clunkyQuill.import
syntax actually works for importing those modules.The text was updated successfully, but these errors were encountered: