@noeldemartin/faker
Version:
Generate massive amounts of fake contextual data
27 lines (26 loc) • 583 B
TypeScript
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to vehicles.
*/
export declare type VehicleDefinitions = 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[];
}>;