8cb202eb29
* Add JavaScript admin client to repository * Apply review feedback Co-authored-by: Stian Thorgersen <stian@redhat.com> --------- Co-authored-by: Stian Thorgersen <stian@redhat.com>
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
export default interface AddressClaimSet {
|
|
country?: string;
|
|
formatted?: string;
|
|
locality?: string;
|
|
postal_code?: string;
|
|
region?: string;
|
|
street_address?: string;
|
|
}
|