DefinitelyTyped/types/random-int/random-int-tests.ts
2018-12-03 00:35:54 +01:00

7 lines
121 B
TypeScript

import randomInt = require('random-int');
// $ExpectType number
randomInt(5);
// $ExpectType number
randomInt(10, 100);