UNPKG

@ar.io/sdk

Version:

[![codecov](https://codecov.io/gh/ar-io/ar-io-sdk/graph/badge.svg?token=7dXKcT7dJy)](https://codecov.io/gh/ar-io/ar-io-sdk)

8 lines (7 loc) 271 B
/** * Cryptographically secure helper for randomness, does not support seeding * @param min - the minimum value * @param max - the maximum value * @returns a random integer between min and max */ export declare const randomInt: (min: number, max: number) => number;