mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
508 B
TypeScript
16 lines
508 B
TypeScript
// Type definitions for murmurhash3js v3.0.1
|
|
// Project: https://github.com/pid/murmurHash3js
|
|
// Definitions by: Dave Lee <https://github.com/dlee-nvisia>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module 'murmurhash3js' {
|
|
export module x86 {
|
|
function hash32(val: string, seed?: number): number;
|
|
function hash128(val: string, seed?: number): string;
|
|
}
|
|
|
|
export module x64 {
|
|
function hash128(val: string, seed?: number): string;
|
|
}
|
|
}
|