UNPKG

vue-admin-core

Version:
20 lines (19 loc) 489 B
/** * @description render paragraph elem * @author wangfupeng */ import { SlateElement } from "@wangeditor/editor"; import { VNode } from "snabbdom"; /** * render paragraph elem * @param elemNode slate elem * @param children children * @param editor editor * @returns vnode */ declare function renderParagraph(elemNode: SlateElement, children: VNode[] | null): VNode; declare const _default: { type: string; renderElem: typeof renderParagraph; }; export default _default;