@ngxs/store 3.8.1-dev.master-b5c0348 → 3.8.1-dev.master-22b962e

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.
@@ -1063,16 +1063,9 @@
1063
1063
  var InitState = /** @class */ (function () {
1064
1064
  function InitState() {
1065
1065
  }
1066
- Object.defineProperty(InitState, "type", {
1067
- get: function () {
1068
- // NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
1069
- return '@@INIT';
1070
- },
1071
- enumerable: false,
1072
- configurable: true
1073
- });
1074
1066
  return InitState;
1075
1067
  }());
1068
+ InitState.type = '@@INIT';
1076
1069
  /**
1077
1070
  * Update action
1078
1071
  */
@@ -1080,16 +1073,9 @@
1080
1073
  function UpdateState(addedStates) {
1081
1074
  this.addedStates = addedStates;
1082
1075
  }
1083
- Object.defineProperty(UpdateState, "type", {
1084
- get: function () {
1085
- // NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
1086
- return '@@UPDATE_STATE';
1087
- },
1088
- enumerable: false,
1089
- configurable: true
1090
- });
1091
1076
  return UpdateState;
1092
1077
  }());
1078
+ UpdateState.type = '@@UPDATE_STATE';
1093
1079
 
1094
1080
  var NGXS_DEVELOPMENT_OPTIONS = new i0.InjectionToken('NGXS_DEVELOPMENT_OPTIONS', {
1095
1081
  providedIn: 'root',