DefinitelyTyped/types/md5-file/index.d.ts
2020-05-14 19:20:31 -07:00

12 lines
363 B
TypeScript

// Type definitions for md5-file 4.0
// Project: https://github.com/roryrjb/md5-file#readme
// Definitions by: BamButz <https://github.com/BamButz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare var md5: {
(filename: string, cb: (err: Error, hash: string) => void): void;
sync: (filename: string) => string;
};
export = md5;