mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* feat: Add typings for math-random Signed-off-by: Richie Bendall <richiebendall@gmail.com> * fix: `cryptographic` should be true | undefined Signed-off-by: Richie Bendall <richiebendall@gmail.com>
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
// Type definitions for math-random 1.0
|
|
// Project: https://github.com/michaelrhodes/math-random#readme
|
|
// Definitions by: Richie Bendall <https://github.com/Richienb>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare const mathRandom: {
|
|
(): number;
|
|
cryptographic: true | undefined;
|
|
};
|
|
|
|
export = mathRandom;
|