frontend
    Preparing search index...

    Props for the VideoPokerGameContent shared component.

    interface VideoPokerGameContentProps {
        apiExec: (
            command: "reset" | "log" | "bet" | "hold",
            amount?: number,
            indices?: number[],
        ) => Promise<VideoPokerResponse>;
        cliGameConfig: Omit<
            CliGameConfig<
                VideoPokerResponse,
                Parameters<VideoPokerGameContentProps["apiExec"]>,
            >,
            "gameName",
        >;
        gameName: "videopoker" | "deuceswild" | "jokerpoker";
        gamePath: string;
        i18nNamespace: string;
        payoutTableRows: string[];
    }
    Index

    Properties

    apiExec: (
        command: "reset" | "log" | "bet" | "hold",
        amount?: number,
        indices?: number[],
    ) => Promise<VideoPokerResponse>

    API exec function

    cliGameConfig: Omit<
        CliGameConfig<
            VideoPokerResponse,
            Parameters<VideoPokerGameContentProps["apiExec"]>,
        >,
        "gameName",
    >

    CLI game configuration for CLI mode integration

    gameName: "videopoker" | "deuceswild" | "jokerpoker"

    Game identifier used for i18n and action log (e.g., "videopoker", "deuceswild")

    gamePath: string

    Route path for the game manual lookup (e.g., "/videopoker")

    i18nNamespace: string

    i18n namespace (e.g., "videopoker", "deuceswild", "jokerpoker")

    payoutTableRows: string[]

    Payout table row keys (variant-specific)