UNPKG

angular-resizable-element

Version:

An angular 15.0+ directive that allows an element to be dragged and resized

10 lines (9 loc) 263 B
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; }