@wangeditor-next/yjs-for-react
Version:
React specific components/utils for wangeditor-next-yjs.
13 lines (12 loc) • 348 B
TypeScript
/**
* @description to html
* @author wangfupeng
*/
import { IDomEditor } from '@wangeditor-next/core';
import { Element } from 'slate';
declare function imageToHtml(elemNode: Element, _childrenHtml: string, editor?: IDomEditor): string;
export declare const imageToHtmlConf: {
type: string;
elemToHtml: typeof imageToHtml;
};
export {};