UNPKG

authentification-redux-lib

Version:

library for authentification with react redux typescript

10 lines (9 loc) 288 B
import { Dispatch } from "redux"; export declare class Auth { private Email; private Password; constructor(); setEmail: (email: string) => string; setPassword: (password: string) => string; goIn: (dispatch: Dispatch<import("redux").AnyAction>) => void; }