decrease-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 decreaseIndentStyle($node: DomElement, options: IndentationOptions): void;
  8. export default decreaseIndentStyle;