diff --git a/backend/@types/random-bigint/index.d.ts b/backend/@types/random-bigint/index.d.ts index e76cf8e1f..afaa832d9 100644 --- a/backend/@types/random-bigint/index.d.ts +++ b/backend/@types/random-bigint/index.d.ts @@ -1,5 +1,6 @@ /* eslint-disable @typescript-eslint/ban-types */ declare module 'random-bigint' { export function random(bits: number, cb?: (err: Error, num: BigInt) => void): BigInt - export = random + // eslint-disable-next-line import/no-default-export + export default random }