DefinitelyTyped/types/parse-duration/index.d.ts
2020-04-10 08:17:52 -07:00

12 lines
331 B
TypeScript

// Type definitions for parse-duration 0.1
// Project: https://github.com/jkroso/parse-duration#readme
// Definitions by: Richard Simko <https://github.com/richardsimko>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* convert `str` to ms
*/
declare function parse(str: string): number;
export = parse;