mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-13 22:40:50 +08:00
11 lines
413 B
TypeScript
11 lines
413 B
TypeScript
// Type definitions for CybozuLabs.MD5
|
|
// Project: http://labs.cybozu.co.jp/blog/mitsunari/2007/07/md5js_1.html
|
|
// Definitions by: MIZUNE Pine <https://github.com/pine613>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module CybozuLabs.MD5 {
|
|
var VERSION: string;
|
|
var BY_ASCII: number;
|
|
var BY_UTF16: number;
|
|
function calc(str: string, option?: number): string;
|
|
} |