@opentiny/fluent-editor
Version:
A rich text editor based on Quill 2.0, which extends rich modules and formats on the basis of Quill. It's powerful and out-of-the-box.
11 lines (10 loc) • 427 B
TypeScript
import { default as Quill } from 'quill';
export declare function getGridConfig(quill: Quill | null): any;
export declare function getBackgroundConfig(quill: Quill | null): false | object;
export declare function getResizeConfig(quill: Quill | null): boolean;
export declare function getAllConfigs(quill: Quill | null): {
gridConfig: any;
backgroundConfig: false | object;
resizeConfig: boolean;
deps?: any;
};