1 | import { ErrorHandler } from '@angular/core';
|
2 | import { Action } from '@ngrx/store';
|
3 | import { Observable } from 'rxjs';
|
4 | import { ObservableNotification } from './utils';
|
5 | export interface EffectNotification {
|
6 | effect: Observable<any> | (() => Observable<any>);
|
7 | propertyName: PropertyKey;
|
8 | sourceName: string | null;
|
9 | sourceInstance: any;
|
10 | notification: ObservableNotification<Action | null | undefined>;
|
11 | }
|
12 | export declare function reportInvalidActions(output: EffectNotification, reporter: ErrorHandler): void;
|
13 |
|
\ | No newline at end of file |