import { IPoint } from './shapes'; export interface IRubberBandState { pStart: IPoint; pEnd: IPoint; newlySelectedShapes: string[]; previouslySelectedShapes: string[]; }