DefinitelyTyped/types/parse-unit/index.d.ts
2019-02-17 17:59:49 +01:00

8 lines
302 B
TypeScript

// Type definitions for parse-unit 1.0
// Project: https://github.com/mattdesl/parse-unit
// Definitions by: Jack Works <https://github.com/Jack-Works>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function parse(value: string | number): [number, string];
export = parse;