@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.
12 lines (11 loc) • 502 B
TypeScript
import { ThemeOptions } from 'quill/core/theme';
import { default as FluentEditor } from '../core/fluent-editor';
declare const OriginSnowTheme: any;
declare class SnowTheme extends OriginSnowTheme {
quill: FluentEditor;
constructor(quill: FluentEditor, options: ThemeOptions);
i18nTextToolbar(): void;
buildPickers(selects: NodeListOf<HTMLSelectElement>, icons: Record<string, string | Record<string, string>>): void;
extendToolbar(toolbar: any): void;
}
export default SnowTheme;