mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
8 lines
308 B
TypeScript
8 lines
308 B
TypeScript
// Type definitions for murmurhash-js v1.0.0
|
|
// Project: https://github.com/mikolalysenko/murmurhash-js
|
|
// Definitions by: Chi Vinh Le <https://github.com/cvle>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare const murmur: (str: string, seed?: number) => number;
|
|
export = murmur;
|