We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b91546c commit bb388e8Copy full SHA for bb388e8
.changeset/beige-cows-bake.md
@@ -30,6 +30,12 @@ store.get('state');
30
store.set('name', 'value');
31
store.set('extendedAction', 1, 2);
32
store.set('state', (draft) => {});
33
+
34
+// Before: store.extendSelectors((set, get, api) => ({ ... })). Now only api argument that you can destructure.
35
+store.extendSelectors(({ get }) => ({ ... }));
36
37
+// Before: store.extendActions((set, get, api) => ({ ... })). Now only api argument that you can destructure.
38
+store.extendActions(({ set }) => ({ ... }));
39
```
40
41
- Remove `mapValuesKey`. This would be the equivalent:
0 commit comments