UNPKG

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