add js-md5 export (#8940)

add js-md5 export
This commit is contained in:
doxiaodong 2016-04-12 23:34:44 +08:00 committed by Masahiro Wakame
parent a9d3849f88
commit 2bb5e51050

4
js-md5/md5.d.ts vendored
View File

@ -29,4 +29,8 @@ interface String {
md5(value: Uint8Array): string;
}
declare module "js-md5" {
export = md5;
}
declare var md5: md5;