blob: 79464280bf205b6814c23ddf3c8a58264de79bf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { VehicleDefinition } from '../../..';
import fuel from './fuel';
import manufacturer from './manufacturer';
import model from './model';
import type_ from './type';
const vehicle: VehicleDefinition = {
fuel,
manufacturer,
model,
type: type_,
};
export default vehicle;
|