@astrodraw/astrochart
Version:
A free and open-source JavaScript library for generating SVG charts to display planets in astrology.
14 lines (13 loc) • 359 B
TypeScript
declare class Timer {
debug: boolean;
callback: (delta: number) => void;
boundTick_: FrameRequestCallback;
lastGameLoopFrame: number;
requestID_: number | undefined;
constructor(callback: (delta: number) => void, debug: boolean);
start(): void;
stop(): void;
isRunning(): boolean;
tick(): void;
}
export default Timer;