Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #271 | Créer une nouvelle expédition (étape 1) | ## 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é Co-authored-by: kevin <kevin@yuno.malio.fr> Reviewed-on: #12 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: Matteo <matteo@yuno.malio.fr> Co-committed-by: Matteo <matteo@yuno.malio.fr>
9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
import type { AddressData } from "~/services/dto/address-data"
|
|
|
|
export interface CustomerData {
|
|
id: number
|
|
label: string
|
|
code?: string | null
|
|
addresses?: AddressData[] | null
|
|
}
|