Installation
npm install --save @types/murmurhash3js
Summary
This package contains type definitions for murmurhash3js (https://github.com/pid/murmurHash3js).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/murmurhash3js.
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;
}
}
Additional Details
- Last updated: Mon, 10 Oct 2022 20:33:05 GMT
- Dependencies: none
- Global values: none
Credits
These definitions were written by DefinitelyTyped.