selfcarebot/node_modules/random/dist/rng-factory.d.ts

12 lines
330 B
TypeScript
Raw Normal View History

2023-03-31 03:22:50 +00:00
import RNG from './rng';
/**
* Construct an RNG with variable inputs. Used in calls to Random constructor
* @param {...*} args - Distribution-specific arguments
* @return RNG
*
* @example
* new Random(RNGFactory(...args))
*/
declare const _default: <T extends any[]>(...args: T) => RNG;
export default _default;