transitive-js
Version:
A tool for generating dynamic stylized transit maps that are easy to understand.
17 lines (16 loc) • 395 B
TypeScript
/**
* Label object
*/
export default class PointLabel extends Label {
constructor(parent: any);
labelAngle: number;
labelPosition: number;
setOrientation(orientation: any): void;
orientation: any;
labelAnchor: {
x: any;
y: any;
} | undefined;
runFocusTransition(display: any, callback: any): void;
}
import Label from "./label";