mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
12 lines
363 B
TypeScript
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;
|