import { Notification, Observable } from 'rxjs'; import { Action } from '@ngrx/store'; export interface FormNotification { effect: Observable | (() => Observable); propertyName: string; sourceName: string; sourceInstance: any; notification: Notification; }