livevegas-ui-kit 1.0.182 → 1.0.183

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.
@@ -11,3 +11,11 @@ export declare const limitsExample: {
11
11
  "Perfect Pair": string;
12
12
  "21+3": string;
13
13
  };
14
+ export declare const limitsItemTexas: {
15
+ name: string;
16
+ limitInProps: boolean;
17
+ limits: string;
18
+ cards: {
19
+ scannerIndex: number;
20
+ }[];
21
+ }[];
@@ -2,5 +2,6 @@ export interface ILimitInfo {
2
2
  Blackjeck: string;
3
3
  "Perfect Pair": string;
4
4
  "21+3": string;
5
+ gameType?: number;
5
6
  }
6
7
  export declare const LimitInfo: (props: ILimitInfo) => import("react/jsx-runtime").JSX.Element;
@@ -10,5 +10,6 @@ export interface IToLobby {
10
10
  socket: HubConnection | null;
11
11
  urlParam: IUrlParam;
12
12
  limits: ILimitInfo;
13
+ gameType?: number;
13
14
  }
14
- export declare const ToLobby: ({ name, round, limit, partnerId, socket, urlParam, limits, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
15
+ export declare const ToLobby: ({ name, round, limit, partnerId, socket, urlParam, limits, gameType }: IToLobby) => import("react/jsx-runtime").JSX.Element;