mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 21:47:35 +00:00
10 lines
321 B
TypeScript
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;
|