js-md5 added

This commit is contained in:
tigerxy
2015-09-20 13:08:14 +02:00
parent 3b595d8d45
commit d5ea9a613f
+18
View File
@@ -0,0 +1,18 @@
// Type definitions for js-md5 v0.3.0
// Project: https://github.com/emn178/js-md5
// Definitions by: Roland Greim <https://github.com/tigerxy>
// Definitions: https://github.com/borisyankov/DefinitelyTyped/
interface JQuery {
md5(value: string): string;
}
interface JQueryStatic {
md5(value: string): string;
}
interface md5 {
(value: string): string;
}
declare var md5: md5;