Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/murmurhash3js-revisited) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Installation
npm install --save @types/murmurhash3js-revisited
Summary
This package contains type definitions for murmurhash3js-revisited (https://github.com/cimi/murmurhash3js-revisited#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/murmurhash3js-revisited.
index.d.ts
// Type definitions for murmurhash3js-revisited 3.0
// Project: https://github.com/cimi/murmurhash3js-revisited#readme
// Definitions by: Carlo Francisco <https://github.com/jcfrancisco>
//                 Junxiao Shi <https://github.com/yoursunny>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export interface X86 {
    hash32: (bytes: Uint8Array, seed?: number) => number;
    hash128: (bytes: Uint8Array, seed?: number) => string;
}
export interface X64 {
    hash128: (bytes: Uint8Array, seed?: number) => string;
}
export const x86: X86;
export const x64: X64;
export const MurmurHash3: {
    x86: X86;
    x64: X64;
};
export as namespace MurmurHash3;
Additional Details
- Last updated: Sat, 01 Oct 2022 17:33:15 GMT
- Dependencies: none
- Global values: MurmurHash3
Credits
These definitions were written by Carlo Francisco, and Junxiao Shi.