Files
NativeScript/tns-core-modules/fps-meter/fps-native.d.ts
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

30 lines
551 B
TypeScript

/**
* @module "fps-meter/fps-native"
*/ /** */
/**
* An utility class used to measure frames per second.
*/
export class FPSCallback {
/**
* Initializes a new instance of FPSCallback class.
*/
constructor(onFrame: (currentTimeMillis: number) => void);
/**
* Starts the frame per seconds measurement.
*/
start(): void;
/**
* Stops the frame per seconds measurement.
*/
stop(): void;
/**
* Gets if the current instance of FPSCallback is running.
*/
running: boolean;
}