@vuemap/district-cluster
Version:
12 lines (11 loc) • 368 B
TypeScript
export default class BoundsItem {
x: number;
y: number;
width: number;
height: number;
constructor(x: number, y: number, width: number, height: number);
static getBoundsItemToExpand(): BoundsItem;
static boundsIntersect(b1: BoundsItem, b2: BoundsItem): boolean;
isEmpty(): boolean;
expandByPoint(x: any, y: any): void;
}