mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-25 03:39:13 +08:00
25 lines
561 B
Text
25 lines
561 B
Text
// Type definitions for ms v0.7.1
|
|
// Project: https://github.com/zeit/ms
|
|
// Definitions by: Zhiyuan Wang <https://github.com/danny8002>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
|
|
/**
|
|
* Short/Long format for `value`.
|
|
*
|
|
* @param {Number} value
|
|
* @param {{long: boolean}} options
|
|
* @return {String}
|
|
*/
|
|
declare function ms(value: number, options?: { long: boolean }): string;
|
|
|
|
/**
|
|
* Parse the given `value` and return milliseconds.
|
|
*
|
|
* @param {String} value
|
|
* @return {Number}
|
|
*/
|
|
declare function ms(value: string): number;
|
|
|
|
export = ms;
|