UNPKG

524 BTypeScriptView Raw
1import { responseStatusTypes } from "@soushians/shared";
2import { ProfileViewModel } from "../models";
3import { SearchAction } from "./search.actions";
4export interface State {
5 status: responseStatusTypes;
6 data: ProfileViewModel.Response;
7}
8export declare const initialState: State;
9export declare function reducer(state: State, action: SearchAction): State;
10export declare var getStatus: (state: State) => responseStatusTypes;
11export declare var getUserInfo: (state: State) => ProfileViewModel.Response;