UNPKG

pokie

Version:

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

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