@vuux/editor
Version:
Vue Nuxt 富文本编辑器
7 lines (6 loc) • 434 B
TypeScript
export declare const escape: (html: string, encode?: boolean) => string;
export declare const unescape: (html: string) => string;
export declare const cleanUrl: (href: string) => string | null;
export declare const splitCells: (tableRow: string, count?: number) => string[];
export declare const rtrim: (str: string, c: string, invert?: boolean) => string;
export declare const findClosingBracket: (str: string, b: string) => number;