UNPKG

@wangeditor-next/editor

Version:
14 lines (13 loc) 403 B
/** * @description video render elem * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import { Element } from 'slate'; import { VNode } from 'snabbdom'; declare function renderVideo(elemNode: Element, children: VNode[] | null, editor: IDomEditor): VNode; declare const renderVideoConf: { type: string; renderElem: typeof renderVideo; }; export { renderVideoConf };