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.

12345678910111213141516171819
  1. export interface UserData {
  2. address: string;
  3. address2: string;
  4. city: string;
  5. country: string;
  6. fullName: string;
  7. postcode: string;
  8. }
  9. export interface IUser extends UserData {
  10. email: string;
  11. username: string;
  12. password: string;
  13. orders?: Array<object>;
  14. }
  15. export interface UpdateResponse {
  16. message: string;
  17. }