UNPKG

pokie

Version:

A server-side video slot game logic framework for JavaScript and TypeScript.

16 lines (13 loc) 597 B
import { GameWithFreeGamesSessionSerializing, VideoSlotSessionSerializing, VideoSlotWithFreeGamesInitialNetworkData, VideoSlotWithFreeGamesRoundNetworkData, VideoSlotWithFreeGamesSessionHandling, } from "pokie"; export interface VideoSlotWithFreeGamesSessionSerializing extends VideoSlotSessionSerializing, GameWithFreeGamesSessionSerializing { getInitialData(session: VideoSlotWithFreeGamesSessionHandling): VideoSlotWithFreeGamesInitialNetworkData; getRoundData(session: VideoSlotWithFreeGamesSessionHandling): VideoSlotWithFreeGamesRoundNetworkData; }