DefinitelyTyped/types/pretty-bytes/index.d.ts
2017-07-04 08:00:07 +08:00

9 lines
336 B
TypeScript

// Type definitions for pretty-bytes 4.0
// Project: https://github.com/sindresorhus/pretty-bytes
// Definitions by: York Yao <https://github.com/plantain-00>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function prettyBytes(bytes: number): string;
export = prettyBytes;
declare namespace prettyBytes { }