types for random-bigint

This commit is contained in:
Ulf Gebhardt 2023-06-06 12:50:19 +02:00
parent 351d15ccb9
commit 75d7ad4a3c
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -0,0 +1,5 @@
/* eslint-disable @typescript-eslint/ban-types */
declare module 'random-bigint' {
export function random(bits: number, cb?: (err: Error, num: BigInt) => void): BigInt
export = random
}