UNPKG

transitive-js

Version:

A tool for generating dynamic stylized transit maps that are easy to understand.

9 lines (8 loc) 211 B
/** * Utility class used when clustering points into MultiPoint objects */ export default class PointCluster { points: any[]; addPoint(point: any): void; mergeVertices(graph: any): void; }