mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 03:46:07 +08:00
8 lines
298 B
TypeScript
8 lines
298 B
TypeScript
// Type definitions for csprng 0.1
|
|
// Project: https://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;
|