| 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>
10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
import type { CarrierData } from '~/services/dto/carrier-data'
|
|
import type { TruckData } from '~/services/dto/truck-data'
|
|
|
|
export interface VehicleData {
|
|
id: number
|
|
plate: string
|
|
carrier?: CarrierData | null
|
|
truck?: TruckData | null
|
|
}
|