@textbus/xnote
Version:
A high-performance rich text editor that supports multiplayer online collaboration.
9 lines (8 loc) • 320 B
TypeScript
import { Formatter } from '@textbus/core';
import { FormatLoader } from '@textbus/platform-browser';
export interface LinkFormatData {
href: string;
target?: '_blank' | '_self';
}
export declare const linkFormatter: Formatter<LinkFormatData>;
export declare const linkFormatLoader: FormatLoader<LinkFormatData>;