You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. export interface IUser {
  2. fullName: string;
  3. email: string;
  4. username: string;
  5. password: string;
  6. }
  7. export interface CreateUserResponse {
  8. message: string;
  9. }