UNPKG

@wangeditor-kai/yjs-for-react

Version:

React specific components/utils for wangeditor-next-yjs.

10 lines (9 loc) 329 B
/** * @description render table * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import { Element as SlateElement } from 'slate'; import { VNode } from 'snabbdom'; declare function renderTable(elemNode: SlateElement, children: VNode[] | null, editor: IDomEditor): VNode; export default renderTable;