@tramvai/types-actions-state-context 2.149.1 → 2.150.1

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/lib/actions.d.ts CHANGED
@@ -60,3 +60,4 @@ export interface TramvaiAction<Params extends any[], Result, Deps> extends Tramv
60
60
  export type UnknownAction<Result = any> = (...args: any[]) => Result;
61
61
  export type AnyAction<Payload = any, Result = any, Deps = any> = Action<Payload, Result, Deps> | PlatformAction<Payload, Result> | UnknownAction;
62
62
  export type PageAction = Action<void, void, any> | TramvaiAction<[], void, any>;
63
+ //# sourceMappingURL=actions.d.ts.map
package/lib/events.d.ts CHANGED
@@ -31,3 +31,4 @@ export type EventCreators = {
31
31
  [K: string]: AnyEventCreator;
32
32
  };
33
33
  export declare const isEvent: (event: any) => event is Event<void>;
34
+ //# sourceMappingURL=events.d.ts.map
package/lib/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './events';
2
2
  export * from './state';
3
3
  export * from './actions';
4
+ //# sourceMappingURL=index.d.ts.map
package/lib/state.d.ts CHANGED
@@ -105,3 +105,4 @@ export interface MiddlewareApi {
105
105
  getState: GetState;
106
106
  }
107
107
  export type Middleware = (api: MiddlewareApi) => (next: Dispatch) => (event: Event) => any;
108
+ //# sourceMappingURL=state.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/types-actions-state-context",
3
- "version": "2.149.1",
3
+ "version": "2.150.1",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",