phaser4-rex-plugins
Version:
23 lines (13 loc) • 338 B
TypeScript
export default Timer;
declare namespace Timer {
}
declare class Timer {
constructor(parent?: Object);
timeScale: number;
destroy(): this;
start(delay: number, timeoutCallback: Function): this;
stop(): this;
pause(): this;
resume(): this;
setTimeScale(value: number): this;
}