UNPKG

slotify.js

Version:

A video slot game session framework for JavaScript

13 lines (12 loc) 588 B
import { IGameSessionSimulationModel } from "./IGameSessionSimulationModel"; import { IReelGameWithFreeGamesSession } from "../session/videogames/reelgames/IReelGameWithFreeGamesSession"; export declare class ReelGameWithFreeGamesSessionSimulationModel implements IGameSessionSimulationModel { private readonly _session; private readonly _baseSession; constructor(session: IReelGameWithFreeGamesSession); getRtp(): number; getTotalBetAmount(): number; getTotalReturnAmount(): number; updateTotalBetBeforePlay(): void; updateTotalReturnAfterPlay(): void; }