UNPKG

@tmlmobilidade/types

Version:
11 lines (10 loc) 594 B
import { z } from 'zod'; /** * Represents a GTFS (General Transit Feed Specification) Location Type. * This type is used to categorize the location based on its function in the transit system. * Each location type corresponds to a specific role, such as a stop, station, or boarding area. * The values are defined according to the GTFS specification. */ export declare const GtfsLocationTypeValues: readonly ["0", "1", "2", "3", "4"]; export declare const GtfsLocationTypeSchema: z.ZodEnum<["0", "1", "2", "3", "4"]>; export type GtfsLocationType = z.infer<typeof GtfsLocationTypeSchema>;