@slot-engine/core 0.2.9 → 0.2.11
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.mts +0 -14
- package/dist/index.d.ts +0 -14
- package/dist/index.js +294 -206
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +294 -206
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -723,17 +723,6 @@ declare class Book {
|
|
|
723
723
|
* Adds an event to the book.
|
|
724
724
|
*/
|
|
725
725
|
addEvent(event: Omit<BookEvent, "index">): void;
|
|
726
|
-
/**
|
|
727
|
-
* Intended for internal use only.
|
|
728
|
-
*/
|
|
729
|
-
_serialize(): {
|
|
730
|
-
id: number;
|
|
731
|
-
criteria: string;
|
|
732
|
-
events: BookEvent[];
|
|
733
|
-
payout: number;
|
|
734
|
-
basegameWins: number;
|
|
735
|
-
freespinsWins: number;
|
|
736
|
-
};
|
|
737
726
|
}
|
|
738
727
|
interface BookEvent {
|
|
739
728
|
index: number;
|
|
@@ -1571,8 +1560,6 @@ declare class ClusterWinType extends WinType {
|
|
|
1571
1560
|
evaluateWins(board: Reels): this;
|
|
1572
1561
|
private getNeighbors;
|
|
1573
1562
|
private evaluateCluster;
|
|
1574
|
-
private isChecked;
|
|
1575
|
-
private isCheckedWild;
|
|
1576
1563
|
}
|
|
1577
1564
|
interface ClusterWinTypeOpts extends WinTypeOpts {
|
|
1578
1565
|
}
|
|
@@ -1594,7 +1581,6 @@ declare class ManywaysWinType extends WinType {
|
|
|
1594
1581
|
evaluateWins(board: Reels, opts?: {
|
|
1595
1582
|
jumpGaps?: boolean;
|
|
1596
1583
|
}): this;
|
|
1597
|
-
private getWayLength;
|
|
1598
1584
|
}
|
|
1599
1585
|
interface ManywaysWinTypeOpts extends WinTypeOpts {
|
|
1600
1586
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -723,17 +723,6 @@ declare class Book {
|
|
|
723
723
|
* Adds an event to the book.
|
|
724
724
|
*/
|
|
725
725
|
addEvent(event: Omit<BookEvent, "index">): void;
|
|
726
|
-
/**
|
|
727
|
-
* Intended for internal use only.
|
|
728
|
-
*/
|
|
729
|
-
_serialize(): {
|
|
730
|
-
id: number;
|
|
731
|
-
criteria: string;
|
|
732
|
-
events: BookEvent[];
|
|
733
|
-
payout: number;
|
|
734
|
-
basegameWins: number;
|
|
735
|
-
freespinsWins: number;
|
|
736
|
-
};
|
|
737
726
|
}
|
|
738
727
|
interface BookEvent {
|
|
739
728
|
index: number;
|
|
@@ -1571,8 +1560,6 @@ declare class ClusterWinType extends WinType {
|
|
|
1571
1560
|
evaluateWins(board: Reels): this;
|
|
1572
1561
|
private getNeighbors;
|
|
1573
1562
|
private evaluateCluster;
|
|
1574
|
-
private isChecked;
|
|
1575
|
-
private isCheckedWild;
|
|
1576
1563
|
}
|
|
1577
1564
|
interface ClusterWinTypeOpts extends WinTypeOpts {
|
|
1578
1565
|
}
|
|
@@ -1594,7 +1581,6 @@ declare class ManywaysWinType extends WinType {
|
|
|
1594
1581
|
evaluateWins(board: Reels, opts?: {
|
|
1595
1582
|
jumpGaps?: boolean;
|
|
1596
1583
|
}): this;
|
|
1597
|
-
private getWayLength;
|
|
1598
1584
|
}
|
|
1599
1585
|
interface ManywaysWinTypeOpts extends WinTypeOpts {
|
|
1600
1586
|
}
|