// Type definitions for blueimp-md5 v1.1.0 // Project: https://github.com/blueimp/JavaScript-MD5 // Definitions by: Ray Martone // Definitions: https://github.com/borisyankov/DefinitelyTyped declare var md5: md5; declare module 'blueimp-md5' { export = md5; } interface md5 { (value: string, key?: string, raw?: boolean): string; }