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