import { CoordsInterface } from '../coords.interface'; import { DimensionsInterface } from '../dimensions.interface'; export interface EnclosingQuadrilateral { topLeft: CoordsInterface; topRight: CoordsInterface; bottomRight: CoordsInterface; bottomLeft: CoordsInterface; size: DimensionsInterface; borderInPx: number; }