blob: 245a3312d5e3e1897d0106a711b339c987339c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to vehicles.
*/
export type VehicleDefinition = LocaleEntry<{
/**
* Some types of bicycles.
*/
bicycle_type: string[];
/**
* Some types of fuel (e.g. `Gasoline`).
*/
fuel: string[];
/**
* Some brands of manufactures (e.g. `Tesla`).
*/
manufacturer: string[];
/**
* Some names of models (e.g. `Fiesta`).
*/
model: string[];
/**
* Some types of vehicles (e.g. `Minivan`).
*/
type: string[];
}>;
|