UNPKG

pokie

Version:

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

19 lines (18 loc) 742 B
import { WinningLineDescribing } from "pokie"; export declare class WinningLine implements WinningLineDescribing { private readonly winAmount; private readonly definition; private readonly pattern; private readonly lineId; private readonly symbolsPositions; private readonly wildSymbolsPositions; private readonly symbolId; constructor(winAmount: number, definition: number[], pattern: number[], lineId: string, symbolsPositions: number[], wildSymbolsPositions: number[], symbolId: string); getDefinition(): number[]; getSymbolId(): string; getLineId(): string; getSymbolsPositions(): number[]; getWildSymbolsPositions(): number[]; getWinAmount(): number; getPattern(): number[]; }