mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-25 11:11:46 +08:00
js-md5 added
This commit is contained in:
Vendored
+18
@@ -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;
|
||||
Reference in New Issue
Block a user