import { Action } from '@ngrx/store'; export class ReduxAction implements Action { readonly type: string; constructor(public readonly payload?: T) {} }