UNPKG

395 BTypeScriptView Raw
1// Type definitions for randombytes 2.0
2// Project: https://github.com/crypto-browserify/randombytes
3// Definitions by: BendingBender <https://github.com/BendingBender>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/// <reference types="node" />
7
8import { randomBytes as _randomBytes } from 'crypto';
9
10export = randomBytes;
11
12declare const randomBytes: typeof _randomBytes;