| 12345678910111213141516171819 |
- export interface UserData {
- address: string;
- address2: string;
- city: string;
- country: string;
- fullName: string;
- postcode: string;
- }
-
- export interface IUser extends UserData {
- email: string;
- username: string;
- password: string;
- orders?: Array<object>;
- }
-
- export interface UpdateResponse {
- message: string;
- }
|