DefinitelyTyped/types/randombytes/index.d.ts
2018-12-04 18:06:55 +01:00

13 lines
395 B
TypeScript

// Type definitions for randombytes 2.0
// Project: https://github.com/crypto-browserify/randombytes
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
import { randomBytes as _randomBytes } from 'crypto';
export = randomBytes;
declare const randomBytes: typeof _randomBytes;