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.

userInterface.ts 144B

12345678
  1. export interface UserData {
  2. address: string;
  3. address2: string;
  4. city: string;
  5. country: string;
  6. fullName: string;
  7. postcode: string;
  8. }