DefinitelyTyped/types/unique-random/index.d.ts
2017-03-24 14:27:52 -07:00

10 lines
321 B
TypeScript

// Type definitions for unique-random
// Project: https://github.com/sindresorhus/unique-random
// Definitions by: Yuki Kokubun <https://github.com/Kuniwak>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function uniqueRandom(min: number, max: number): () => number;
export = uniqueRandom;