| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [ ] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: #7 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
export interface AddressData {
|
|
id: number
|
|
label: string
|
|
street: string
|
|
street2?: string | null
|
|
postalCode: string
|
|
city: string
|
|
countryCode: string
|
|
fullAddress?: string
|
|
}
|