@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.
20 lines (18 loc) • 419 B
TypeScript
import { EventEmitter } from '@angular/core';
interface WikiLink {
link: string;
text: string;
}
interface DocLink {
link: string;
text: string;
icon: string;
}
export interface GlobalLinkPanel {
wikiLink: EventEmitter<WikiLink[]>;
docLink: EventEmitter<DocLink[]>;
workItemLink: EventEmitter<any>;
close?: EventEmitter<any>;
autoClose?: boolean;
}
export {};