first, small commit :) mrdoob's stats

This commit is contained in:
Gregory Dalton
2013-11-18 22:06:56 -08:00
parent 2bbfc5756c
commit b183d98888
+18
View File
@@ -0,0 +1,18 @@
/**
* @author mrdoob / http://mrdoob.com/
* stats.js - http://github.com/mrdoob/stats.js
*/
declare class Stats {
REVISION: number;
domElement: HTMLDivElement;
setMode(value: number): void;
begin(): void;
end(): number;
update(): void;
}