UNPKG

diagram-js

Version:

A toolbox for displaying and modifying diagrams on the web

16 lines (13 loc) 262 B
/** * @param bounds * @return */ export function center(bounds: Rect): Point; /** * @param a * @param b * @return */ export function delta(a: Point, b: Point): Point; type Point = import("../util/Types").Point; type Rect = import("../util/Types").Rect;