UNPKG

vue-admin-core

Version:
13 lines (12 loc) 364 B
/** * @description render elem * @author wangfupeng */ import { VNode } from "snabbdom"; import { IDomEditor, SlateElement } from "@wangeditor/editor"; declare function renderVariable(elem: SlateElement, children: VNode[] | null, editor: IDomEditor): VNode; declare const conf: { type: string; renderElem: typeof renderVariable; }; export default conf;