UNPKG

@wangeditor-next/editor

Version:
14 lines (13 loc) 524 B
/** * @description table menu helpers * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import { ListItemElement } from './custom-types'; /** * 获取上一个同一 level 的 list item * @param editor 编辑器实例 * @param elem elem */ export declare function getBrotherListNodeByLevel(editor: IDomEditor, elem: ListItemElement, level?: number): ListItemElement | null; export declare function hasSameOrderWithBrother(editor: IDomEditor, elem: ListItemElement, level?: number): boolean;