client_plugin_logic_deb 1.8.498 → 1.8.500

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.
@@ -2840,16 +2840,16 @@ export declare namespace games.jass.logic.redux.actions.game {
2840
2840
  const constructor: abstract new () => RoundEndedAction;
2841
2841
  }
2842
2842
  }
2843
- class PartyRestartedAction implements com.logic.redux.store.definitions.Action {
2844
- constructor(id: string, roundNumber: number);
2843
+ class PartyRestartedAction extends games.jass.logic.redux.actions.game.GameAction.$metadata$.constructor {
2844
+ constructor(id: string, roundNumber: number, gameHistory: games.jass.logic.data.models.table.history.GameHistory);
2845
2845
  get id(): string;
2846
2846
  get partyNumber(): number;
2847
- copy(id?: string, roundNumber?: number): games.jass.logic.redux.actions.game.PartyRestartedAction;
2847
+ get gameHistory(): games.jass.logic.data.models.table.history.GameHistory;
2848
+ copy(id?: string, roundNumber?: number, gameHistory?: games.jass.logic.data.models.table.history.GameHistory): games.jass.logic.redux.actions.game.PartyRestartedAction;
2848
2849
  toString(): string;
2849
2850
  hashCode(): number;
2850
2851
  equals(other: Nullable<any>): boolean;
2851
2852
  get actionTag(): string;
2852
- readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
2853
2853
  }
2854
2854
  namespace PartyRestartedAction {
2855
2855
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */