You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
396 B
Plaintext
11 lines
396 B
Plaintext
/**
|
|
* @description 对节点 操作 进行封装
|
|
* 获取当前节点的段落
|
|
* 根据type判断是增加还是减少缩进
|
|
* @author tonghan
|
|
*/
|
|
import { DomElement } from '../../utils/dom-core';
|
|
import Editor from '../../editor/index';
|
|
declare function operateElement($node: DomElement, type: String, editor: Editor): void;
|
|
export default operateElement;
|