UNPKG

386 BTypeScriptView Raw
1import { responseStatusTypes } from "@soushians/shared";
2import { ChangePasswordAction } from "./change-password.actions";
3export interface State {
4 status: responseStatusTypes;
5}
6export declare const initialState: State;
7export declare function reducer(state: State, action: ChangePasswordAction): State;
8export declare var getStatus: (state: State) => responseStatusTypes;