livevegas-ui-kit 1.0.260 → 1.0.262

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -49,8 +49,6 @@ export interface IRound {
49
49
  winNumber?: number;
50
50
  tableName?: string;
51
51
  fusionNumbers?: any[];
52
- isMaxPayOut?: boolean;
53
- maxPayOut?: number;
54
52
  }
55
53
  export type IHands = Pick<IHand, 'cards' | 'finalValue' | 'isBlackjack' | 'winOnHand' | 'betOnHand'>;
56
54
  export interface IDealerHand {
@@ -121,6 +119,8 @@ export interface IPlayer {
121
119
  isFolded?: boolean;
122
120
  winType?: number | null;
123
121
  winOnBonus?: number | null;
122
+ isMaxPayOut?: boolean;
123
+ maxPayOut?: number;
124
124
  }
125
125
  export interface IWins {
126
126
  betReferenceId?: number;