increase-indent-style.d.ts 292 Bytes
Newer Older
1 2 3 4 5 6 7 8
/**
 * @description 增加缩进
 * @author tonghan
 */
import { DomElement } from '../../utils/dom-core';
import { IndentationOptions } from '../../config/menus';
declare function increaseIndentStyle($node: DomElement, options: IndentationOptions): void;
export default increaseIndentStyle;