Advertisement
Hen_B_S

Auth and User Types

Feb 3rd, 2023
804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TypeScript 0.31 KB | Source Code | 0 0
  1. export const AUTH_REQ="AUTH_REQUEST";
  2. export const AUTH_SUCCESS="AUTH_SUCCESS";
  3. export const AUTH_FAILURE="AUTH_FAILUE";
  4. export const LOGIN_REQUEST="LOGIN_REQUEST";
  5. export const LOGOUT_REQUEST="LOGOUT_RESQUEST"
  6.  
  7. export type User = {
  8.     firstName: string;
  9.     lastName: string;
  10.     userName: string;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement