Type Alias HomeAddress

HomeAddress: {
    addressLine1: string;
    addressLine2: string | null;
    city: string;
    country: Country;
    state: string | null;
    zipCode: string;
}

Type declaration

  • addressLine1: string
  • addressLine2: string | null
  • city: string
  • country: Country
  • state: string | null
  • zipCode: string