mirror of
https://github.com/hulkholden/n64js.git
synced 2025-04-02 10:51:54 -04:00
13 lines
173 B
JavaScript
13 lines
173 B
JavaScript
|
|
/** @constructor */
|
|
function Stats() {};
|
|
|
|
/**
|
|
* @param {number} id
|
|
*/
|
|
Stats.prototype.setMode = function(id) {};
|
|
|
|
/**
|
|
* @type {?Element}
|
|
*/
|
|
Stats.prototype.domElement;
|