UNPKG

authentification-redux-lib

Version:

library for authentification with react redux typescript

18 lines (15 loc) 362 B
declare type AuthEmail = string declare type AuthPassword = string declare type AuthConfirmPassword = string interface Login { email : AuthEmail password : AuthPassword } interface Signup { email : AuthEmail password : AuthPassword confirmPassword : AuthConfirmPassword } interface ForgotPassword { email : AuthEmail }