UNPKG

263 BTypeScriptView Raw
1import { BoundingRectangle } from './bounding-rectangle.interface';
2import { Edges } from './edges.interface';
3/**
4 * The `$event` object that is passed to the resize events
5 */
6export interface ResizeEvent {
7 rectangle: BoundingRectangle;
8 edges: Edges;
9}