bigint-crypto-utils/types/randBytes.d.ts

4 lines
281 B
TypeScript
Raw Normal View History

/// <reference types="node" />
export declare function randBytes(byteLength: number, forceLength?: boolean): Promise<Uint8Array | Buffer>;
export declare function randBytesSync(byteLength: number, forceLength?: boolean): Uint8Array | Buffer;
//# sourceMappingURL=randBytes.d.ts.map