livevegas-ui-kit 1.0.38 → 1.0.39
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.
- package/dist/components/History/helpers.d.ts +10 -0
- package/dist/livevegas-ui-kit.es.js +1386 -1184
- package/dist/livevegas-ui-kit.umd.js +290 -124
- package/package.json +1 -2
|
@@ -86,6 +86,16 @@ export interface IBets {
|
|
|
86
86
|
boxIndex: number;
|
|
87
87
|
winAmount: number;
|
|
88
88
|
}
|
|
89
|
+
export declare enum Table {
|
|
90
|
+
SpeedBlackJack1 = 57,
|
|
91
|
+
SpeedBlackJack2 = 11,
|
|
92
|
+
BlackJack1 = 29,
|
|
93
|
+
BlackJack2 = 30,
|
|
94
|
+
BlackJack3 = 11,
|
|
95
|
+
BlackJack4 = 56,// poker dom
|
|
96
|
+
BlackJackTest = 16
|
|
97
|
+
}
|
|
98
|
+
export declare const getTableName: (tableId: number) => "" | "Speed BlackJack P" | "Speed BlackJack" | "BlackJack 1" | "BlackJack 2" | "BlackJack P" | "BlackJack";
|
|
89
99
|
export declare enum BET_TYPE {
|
|
90
100
|
Ante = 0,
|
|
91
101
|
Insurance = 3,
|