@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.
14 lines (13 loc) • 455 B
TypeScript
import { BlockEmbed as TypeBlockEmbed } from 'quill/blots/block';
declare const BlockEmbed: typeof TypeBlockEmbed;
export declare class Video extends BlockEmbed {
static blotName: string;
static tagName: string;
static SANITIZED_URL: string;
static PROTOCOL_WHITELIST: string[];
static className: string;
static sanitize(url: any): any;
static create(value: any): HTMLElement;
static value(domNode: any): any;
}
export {};