UNPKG

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