Add definitions for unique-random

This commit is contained in:
Kuniwak
2015-09-18 21:02:33 +09:00
parent 6f6e5c7dd9
commit 0263c96c06
2 changed files with 15 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
// Type definitions for unique-random
// Project: https://github.com/sindresorhus/unique-random
// Definitions by: Yuki Kokubun <https://github.com/Kuniwak>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "unique-random" {
function uniqueRandom(min: number, max: number): () => number;
export = uniqueRandom;
}