@ngxs/store 18.1.4-dev.master-f22f4cb → 18.1.4-dev.master-583f543

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.
@@ -121,14 +121,13 @@ declare function ɵensureSelectorMetadata(target: Function): ɵSelectorMetaDataM
121
121
  */
122
122
  declare function ɵgetSelectorMetadata(target: any): ɵSelectorMetaDataModel;
123
123
 
124
- declare function defaultEqualityCheck(a: any, b: any): boolean;
125
124
  /**
126
125
  * Memoize a function on its last inputs only.
127
126
  * Originally from: https://github.com/reduxjs/reselect/blob/master/src/index.js
128
127
  *
129
128
  * @ignore
130
129
  */
131
- declare function ɵmemoize<T extends (...args: any[]) => any>(func: T, equalityCheck?: typeof defaultEqualityCheck): T;
130
+ declare function ɵmemoize<T extends (...args: any[]) => any>(func: T, equalityCheck?: (value1: any, value2: any) => boolean): T;
132
131
 
133
132
  declare class ɵInitialState {
134
133
  private static _value;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngxs/store",
3
- "version": "18.1.4-dev.master-f22f4cb",
3
+ "version": "18.1.4-dev.master-583f543",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {