@betorigami/games 0.7.26 → 0.7.28
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 +21 -1
- package/dist/index.mjs +781 -372
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { KenoRiskLevel } from '@betorigami/calculations';
|
|
4
4
|
import { ContextProvider } from '@lit/context';
|
|
5
5
|
import BigNumber from 'bignumber.js';
|
|
6
|
-
import { CSSResult, LitElement, PropertyValues } from 'lit';
|
|
6
|
+
import { CSSResult, LitElement, PropertyValues, TemplateResult } from 'lit';
|
|
7
7
|
|
|
8
8
|
declare enum Currency {
|
|
9
9
|
USD = "USD",
|
|
@@ -3509,6 +3509,26 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
3509
3509
|
updateBalance(newAmount: BigNumber): void;
|
|
3510
3510
|
render(): import("lit-html").TemplateResult<1> | undefined;
|
|
3511
3511
|
}
|
|
3512
|
+
export declare class BetDetailsComponent extends OrigamiElement {
|
|
3513
|
+
static styles: import("lit").CSSResult;
|
|
3514
|
+
baseUrl: string;
|
|
3515
|
+
betId: string;
|
|
3516
|
+
private _betDetails;
|
|
3517
|
+
private _isMobile;
|
|
3518
|
+
private get _gameName();
|
|
3519
|
+
private get _roundId();
|
|
3520
|
+
private get _timestamp();
|
|
3521
|
+
private get _currency();
|
|
3522
|
+
private get _betAmount();
|
|
3523
|
+
private get _multiplier();
|
|
3524
|
+
private get _payout();
|
|
3525
|
+
render(): TemplateResult<1>;
|
|
3526
|
+
connectedCallback(): Promise<void>;
|
|
3527
|
+
disconnectedCallback(): void;
|
|
3528
|
+
private _resizeHandler;
|
|
3529
|
+
private handleShare;
|
|
3530
|
+
private fetchBetDetails;
|
|
3531
|
+
}
|
|
3512
3532
|
declare enum MinesGameOutcome {
|
|
3513
3533
|
WIN = "WIN",
|
|
3514
3534
|
LOSS = "LOSS"
|