You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Allows you to capture the frames-per-second metrics of your application.
*/
declare module "fps-meter"{
/**
* Starts the frames-per-second meter.
*/
exportfunctionstart(): void;
/**
* Stops the frames-per-second meter.
*/
exportfunctionstop(): void;
/**
* Returns a valid indicating whether the frames-per-second meter is currently running.
*/
exportfunctionrunning(): boolean;
/**
* Adds a callback function to be called each time FPS data is due to be reported. Returns an unique id which can be used to remove this callback later.