raspberry_games_engine_helpers 1.8.434 → 1.8.435
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/Kosi-Kaverit-kaverit.js +56 -56
- package/Kosi-Kodein-kodein-di.js +493 -493
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1401 -1401
- package/Logic_Debertz-core.js +660 -660
- package/Logic_Debertz-engine.d.ts +3 -2
- package/Logic_Debertz-engine.js +8298 -8083
- package/Logic_Debertz-engine.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +1074 -1074
- package/package.json +1 -1
- package/raspberry-cardgame-lib-core.js +29 -16
- package/raspberry-cardgame-lib-core.js.map +1 -1
|
@@ -978,12 +978,13 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
978
978
|
}
|
|
979
979
|
export declare namespace games.jass.logic.data.models.dealer {
|
|
980
980
|
class RandomData {
|
|
981
|
-
constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy);
|
|
981
|
+
constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>);
|
|
982
982
|
get signature(): Nullable<string>;
|
|
983
983
|
get id(): string;
|
|
984
984
|
get indexes(): kotlin.collections.KtList<number>;
|
|
985
985
|
get provider(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
986
|
-
|
|
986
|
+
get cardDeck(): kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>;
|
|
987
|
+
copy(signature?: Nullable<string>, id?: string, indexes?: kotlin.collections.KtList<number>, provider?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck?: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>): games.jass.logic.data.models.dealer.RandomData;
|
|
987
988
|
toString(): string;
|
|
988
989
|
hashCode(): number;
|
|
989
990
|
equals(other: Nullable<any>): boolean;
|