UNPKG

transitive-js

Version:

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

23 lines (22 loc) 525 B
/** * Label object */ export default class Label { constructor(parent: any); parent: any; sortableType: string; getText(): any; labelText: any; initText(): any; render(display: any): void; /** * Does not need to be implemented by subclass */ refresh(display: any): void; setVisibility(visibility: any): void; getBBox(): null; intersects(obj: any): null; intersectsBBox(bbox: any): boolean; isFocused(): any; getZIndex(): number; }