UNPKG

@gorpacrate/core-graphics

Version:

A core library for creating shape-based graphic editors

8 lines (7 loc) 186 B
import { IPoint } from './shapes'; export interface IRubberBandState { pStart: IPoint; pEnd: IPoint; newlySelectedShapes: string[]; previouslySelectedShapes: string[]; }