@akanjs/store 0.9.46 → 0.9.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/store",
3
- "version": "0.9.46",
3
+ "version": "0.9.47",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -197,7 +197,7 @@ type FormSetter<Full, T extends string, _CapitalizedT extends string = Capitaliz
197
197
  } & {
198
198
  [K in `writeOn${_CapitalizedT}`]: (path: string | (string | number)[], value: any) => void;
199
199
  };
200
- interface SliceInfo<T extends string, State, Action> {
200
+ export interface SliceInfo<T extends string, State, Action> {
201
201
  refName: T;
202
202
  state: State;
203
203
  action: Action;