UNPKG

quill-image-compress

Version:

A Quill rich text editor Module which compresses images uploaded to the editor

14 lines (13 loc) 384 B
import Quill from "quill"; export type OptionsObject = { validation?: boolean; debug?: boolean; suppressErrorLogging?: boolean; maxWidth?: number; maxHeight?: number; imageType?: string; keepImageTypes?: string[]; ignoreImageTypes?: string[]; quality?: number; insertIntoEditor?: (base64URL: string, imageBlob: Blob, editor: Quill) => void; };