@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.
17 lines (16 loc) • 556 B
TypeScript
import { default as TypeEmbed } from 'quill/blots/embed';
import { default as TypeScroll } from 'quill/blots/scroll';
declare const Embed: typeof TypeEmbed;
export declare class MentionLink extends Embed {
scroll: TypeScroll;
static blotName: string;
static tagName: string;
static className: string;
mentionData: any;
static create(data: any): HTMLElement;
static value(domNode: HTMLElement): Record<string, any>;
constructor(scroll: TypeScroll, domNode: any, data: any);
value(): any;
remove(): void;
}
export {};