UNPKG

wangeditor

Version:

wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费

20 lines (19 loc) 551 B
import Editor from '../../../editor'; import { DomElement } from '../../../utils/dom-core'; import SelectionRangeElem from '../SelectionRangeElem'; export declare type HandlerListOptions = { editor: Editor; listType: string; listTarget: string; $selectionElem: DomElement; $startElem: DomElement; $endElem: DomElement; }; export interface Exec { exec: Function; } export declare class ListHandle { options: HandlerListOptions; selectionRangeElem: SelectionRangeElem; constructor(options: HandlerListOptions); }