projects/angular-resizable-element/src/lib/interfaces/resize-event.interface.ts
The $event
object that is passed to the resize events
Properties |
edges |
edges:
|
Type : Edges
|
rectangle |
rectangle:
|
Type : BoundingRectangle
|
import { BoundingRectangle } from './bounding-rectangle.interface';
import { Edges } from './edges.interface';
/**
* The `$event` object that is passed to the resize events
*/
export interface ResizeEvent {
rectangle: BoundingRectangle;
edges: Edges;
}