mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
import * as md5 from "md5-file";
|
|
|
|
// $ExpectType void
|
|
md5("test.txt", (err, hash) => {
|
|
return;
|
|
});
|
|
|
|
// $ExpectType string
|
|
md5.sync("text.txt");
|