selfcarebot/node_modules/random/dist/generators/math-random.d.ts

8 lines
220 B
TypeScript
Raw Normal View History

2023-03-31 03:22:50 +00:00
import RNG from '../rng';
export default class RNGMathRandom extends RNG {
get name(): string;
next(): number;
seed(_seed: unknown, _opts: Record<string, unknown>): void;
clone(): RNGMathRandom;
}