@tmlmobilidade/types
Version:
5 lines (4 loc) • 488 B
TypeScript
import { z } from 'zod';
export declare const StopFacilityValues: readonly ["fire_station", "health_clinic", "historic_building", "hospital", "police_station", "school", "shopping", "transit_office", "university", "beach"];
export declare const StopFacilitySchema: z.ZodEnum<["fire_station", "health_clinic", "historic_building", "hospital", "police_station", "school", "shopping", "transit_office", "university", "beach"]>;
export type StopFacility = z.infer<typeof StopFacilitySchema>;