import { Action } from '@ngrx/store'; import { AuthUser } from "../../models/auth-user"; export declare enum AuthActionTypes { GET_AUTH_USER = "[AUTH] Get Auth User" } export declare class GetAuthUser implements Action { payload: AuthUser; readonly type = AuthActionTypes.GET_AUTH_USER; constructor(payload: AuthUser); } export declare type AuthActions = GetAuthUser;