UNPKG

ngx-svg-graphics

Version:

Small svg library to link components or svg elements with arrows and allow to drag components.

7 lines (6 loc) 207 B
import { BoundingBox } from './bounding-box'; import { Identifiable } from './identifiable'; export interface Positionable { position: BoundingBox; } export type Draggable = Positionable & Identifiable;