@betorigami/games 1.3.1 → 1.3.3
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/index.d.ts +2 -2
- package/dist/index.mjs +431 -430
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3996,7 +3996,8 @@ export type LimboStartArgs = {
|
|
|
3996
3996
|
declare class LimboApi {
|
|
3997
3997
|
private authToken;
|
|
3998
3998
|
private baseUrl;
|
|
3999
|
-
static
|
|
3999
|
+
static winChancePrecision: number;
|
|
4000
|
+
static multiplierPrecision: number;
|
|
4000
4001
|
static minMultiplier: number;
|
|
4001
4002
|
static maxMultiplier: number;
|
|
4002
4003
|
static getMinWinChance(edge: number): string;
|
|
@@ -4013,7 +4014,6 @@ declare class LimboApi {
|
|
|
4013
4014
|
}>;
|
|
4014
4015
|
static calculateMultiplier(winChance: number, edge: number): string;
|
|
4015
4016
|
static calculateWinChance(targetMultiplier: number, edge: number): string;
|
|
4016
|
-
static calculateProfitOnWin(amount: string, targetMultiplier: number): string;
|
|
4017
4017
|
static isValidMultiplier(multiplier: string): boolean;
|
|
4018
4018
|
static isValidWinChance(winChance: string, edge: number): boolean;
|
|
4019
4019
|
}
|