mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
// Type definitions for parse-ms 1.0
|
|
// Project: https://github.com/sindresorhus/parse-ms#readme
|
|
// Definitions by: Giles Roadnight <https://github.com/Roaders>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export default function parseMs(ms: number): {
|
|
days: number;
|
|
hours: number;
|
|
minutes: number;
|
|
seconds: number;
|
|
milliseconds: number;
|
|
};
|