All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
| 313| Création d'une page d'administration : modification/création d'un fournisseur | |------------------|-----------------| | | | ## 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: #20 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: Matteo <matteo@yuno.malio.fr> Co-committed-by: Matteo <matteo@yuno.malio.fr>
20 lines
367 B
TypeScript
20 lines
367 B
TypeScript
export interface AddressData {
|
|
id: number
|
|
label: string
|
|
street: string
|
|
street2?: string | null
|
|
postalCode: string
|
|
city: string
|
|
countryCode: string
|
|
}
|
|
|
|
export interface AddressFormData {
|
|
id?: number | null
|
|
label: string
|
|
street: string
|
|
street2?: string | null
|
|
postalCode: string
|
|
city: string
|
|
countryCode: string
|
|
}
|