pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
9 lines (8 loc) • 466 B
TypeScript
import { RandomNumberGenerating, SymbolsCombinationDescribing, SymbolsCombinationsGenerating, VideoSlotConfigDescribing } from "pokie";
export declare class SymbolsCombinationsGenerator implements SymbolsCombinationsGenerating {
private readonly rng;
private readonly config;
constructor(config: VideoSlotConfigDescribing, rng?: RandomNumberGenerating);
generateSymbolsCombination(): SymbolsCombinationDescribing;
private getRandomReelSymbols;
}