Merge pull request #2888 from CodeAnimal/precise

Add precise definitions and tests.
This commit is contained in:
Basarat Ali Syed
2014-09-29 18:17:18 +10:00
2 changed files with 43 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
/// <reference path="precise.d.ts" />
import precise = require("precise");
var timer = precise().start();
setTimeout(function () {
console.log(timer.stop().diff());
}, 1000);
+34
View File
@@ -0,0 +1,34 @@
// Type definitions for precise
// Project: https://github.com/avoidwork/precise
// Definitions by: Peter Harris <https://github.com/codeanimal>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "precise" {
/**
* Precise factory
*/
function _precise(): _precise.Precise;
module _precise {
class Precise {
constructor();
/**
* Starts a timer
*/
start(): Precise;
/**
* Stops a timer
*/
stop(): Precise;
/**
* Returns the nanoseconds from `start()` to `stop()`
*/
diff(): number;
}
}
export = _precise;
}