@tmlmobilidade/types
Version:
5 lines (4 loc) • 310 B
TypeScript
import z from 'zod';
export declare const VehicleTypologyValues: readonly ["bus", "train", "tram", "metro", "ship", "funicular"];
export declare const VehicleTypologySchema: z.ZodEnum<["bus", "train", "tram", "metro", "ship", "funicular"]>;
export type VehicleTypology = z.infer<typeof VehicleTypologySchema>;