resize-event.d.ts 285 B

12345678910111213141516
  1. import { ISize } from './size';
  2. export interface IResizeEvent {
  3. host: any;
  4. handle: any;
  5. size: ISize;
  6. position: {
  7. top: number;
  8. left: number;
  9. };
  10. direction: {
  11. n: boolean;
  12. s: boolean;
  13. w: boolean;
  14. e: boolean;
  15. };
  16. }