mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
297 B
TypeScript
8 lines
297 B
TypeScript
// Type definitions for csprng 0.1
|
|
// Project: http://github.com/jcoglan/node-csprng
|
|
// Definitions by: Wink Saville <https://github.com/winksaville>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
export = csprng;
|
|
|
|
declare function csprng(bits: number, radix: number): string;
|