mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
472 B
TypeScript
16 lines
472 B
TypeScript
// Type definitions for pretty-hrtime 1.0
|
|
// Project: https://github.com/robrich/pretty-hrtime
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = prettyHrtime;
|
|
|
|
declare function prettyHrtime(hrTime: [number, number], options?: prettyHrtime.Options): string;
|
|
|
|
declare namespace prettyHrtime {
|
|
interface Options {
|
|
verbose?: boolean;
|
|
precise?: boolean;
|
|
}
|
|
}
|