Add precise definitions and tests.

This commit is contained in:
CodeAnimal
2014-09-27 18:19:07 +01:00
parent c8b6954f44
commit 161395bce8
2 changed files with 43 additions and 0 deletions
+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;
}