ethers.js/lib.commonjs/crypto/random.d.ts
2023-04-27 21:19:55 +09:00

14 lines
409 B
TypeScript

/**
* Return %%length%% bytes of cryptographically secure random data.
*
* @example:
* randomBytes(8)
* //_result:
*/
export declare function randomBytes(length: number): Uint8Array;
export declare namespace randomBytes {
var _: (length: number) => Uint8Array;
var lock: () => void;
var register: (func: (length: number) => Uint8Array) => void;
}
//# sourceMappingURL=random.d.ts.map