is-active.d.ts 411 B

12345678910
  1. /**
  2. * @description 检查选区是否在链接中,即菜单是否应该 active
  3. * @author wangfupeng
  4. */
  5. import Editor from '../../editor/index';
  6. import { DomElement } from '../../utils/dom-core';
  7. export declare const EXTRA_TAG: string[];
  8. export declare function getParentNodeA(selectionELem: DomElement): HTMLElement | undefined;
  9. declare function isActive(editor: Editor): boolean;
  10. export default isActive;