increase-indent-style.d.ts 292 B

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