Unwrap all lone ambient external modules

This commit is contained in:
Ryan Cavanaugh
2016-04-22 14:12:45 -07:00
parent fa7a5ddc9b
commit 4a433abbf4
616 changed files with 74328 additions and 75201 deletions

43
precise/precise.d.ts vendored
View File

@@ -3,32 +3,31 @@
// Definitions by: Peter Harris <https://github.com/codeanimal>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "precise" {
/**
* Precise factory
*/
function _precise(): _precise.Precise;
module _precise {
/**
* Precise factory
*/
declare function _precise(): _precise.Precise;
declare module _precise {
class Precise {
constructor();
constructor();
/**
* Starts a timer
*/
start(): Precise;
/**
* Starts a timer
*/
start(): Precise;
/**
* Stops a timer
*/
stop(): Precise;
/**
* Stops a timer
*/
stop(): Precise;
/**
* Returns the nanoseconds from `start()` to `stop()`
*/
diff(): number;
/**
* Returns the nanoseconds from `start()` to `stop()`
*/
diff(): number;
}
}
export = _precise;
}
export = _precise;