@ngxs/store 3.8.2-dev.master-e8a3d9f → 3.8.2-dev.master-a59c9ba

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": "@ngxs/store",
3
- "version": "3.8.2-dev.master-e8a3d9f",
3
+ "version": "3.8.2-dev.master-a59c9ba",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -26,7 +26,7 @@ export declare class InternalDispatcher {
26
26
  /**
27
27
  * Dispatches event(s).
28
28
  */
29
- dispatch(actionOrActions: any | any[]): Observable<any>;
29
+ dispatch(actionOrActions: any | any[]): Observable<void>;
30
30
  private dispatchByEvents;
31
31
  private dispatchSingle;
32
32
  private getActionResultStream;
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
14
14
  * 4) `toPromise()` without `catch` -> do `handleError()`
15
15
  * 5) `toPromise()` with `catch` -> don't `handleError()`
16
16
  */
17
- export declare function ngxsErrorHandler<T>(internalErrorReporter: InternalErrorReporter, ngxsExecutionStrategy: NgxsExecutionStrategy): (source: Observable<T>) => Observable<unknown>;
17
+ export declare function ngxsErrorHandler(internalErrorReporter: InternalErrorReporter, ngxsExecutionStrategy: NgxsExecutionStrategy): (source: Observable<void>) => Observable<void>;
18
18
  export declare class InternalErrorReporter {
19
19
  private _injector;
20
20
  /** Will be set lazily to be backward compatible. */
package/src/store.d.ts CHANGED
@@ -24,7 +24,7 @@ export declare class Store {
24
24
  /**
25
25
  * Dispatches event(s).
26
26
  */
27
- dispatch(actionOrActions: any | any[]): Observable<any>;
27
+ dispatch(actionOrActions: any | any[]): Observable<void>;
28
28
  /**
29
29
  * Selects a slice of data from the store.
30
30
  */