mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
8 lines
331 B
TypeScript
8 lines
331 B
TypeScript
// Type definitions for blueimp-md5 v1.1.0
|
|
// Project: https://github.com/blueimp/JavaScript-MD5
|
|
// Definitions by: Ray Martone <https://github.com/rmartone>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
declare module 'blueimp-md5' {
|
|
export function md5(value: string, key?: string, raw?: boolean): string;
|
|
}
|