is-active.d.ts 219 B

1234567
  1. /**
  2. * @description 检查选区是否在代码中,即菜单是否应该 active
  3. * @author lkw
  4. */
  5. import Editor from '../../editor/index';
  6. declare function isActive(editor: Editor): boolean;
  7. export default isActive;