util.d.ts 305 B

1234
  1. import type { TargetPoint } from './interface';
  2. export declare function isSamePoint(prev: TargetPoint, next: TargetPoint): boolean;
  3. export declare function restoreFocus(activeElement: any, container: any): void;
  4. export declare function monitorResize(element: HTMLElement, callback: Function): () => void;