mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +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 module: {
|
|
(filename: string, cb: (err: Error, hash: string) => void): void;
|
|
sync: (filename: string) => string;
|
|
};
|
|
|
|
export = module;
|