All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #317 | Création d'une page d'administration : modification/création d'un transporteur | ## 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: #18 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: sroy <sebastien@yuno.malio.fr> Co-committed-by: sroy <sebastien@yuno.malio.fr>
16 lines
231 B
TypeScript
16 lines
231 B
TypeScript
export interface CarrierData {
|
|
id: number
|
|
name: string
|
|
code: string
|
|
}
|
|
|
|
export interface CarrierFormData {
|
|
name: string
|
|
code: string
|
|
}
|
|
|
|
export type CarrierPayload = {
|
|
name?: string | null
|
|
code?: string
|
|
}
|