UNPKG

ws-dottie

Version:

Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration

22 lines 853 B
import { z } from "../../../../shared/zod"; /** * Schema for toll trip information * * Provides current toll rates for high occupancy lanes. Coverage Area: Statewide. */ export declare const tollTripInfoSchema: z.ZodObject<{ EndLatitude: z.ZodNumber; EndLocationName: z.ZodNullable<z.ZodString>; EndLongitude: z.ZodNumber; EndMilepost: z.ZodNumber; StartLatitude: z.ZodNumber; StartLocationName: z.ZodNullable<z.ZodString>; StartLongitude: z.ZodNumber; StartMilepost: z.ZodNumber; TravelDirection: z.ZodNullable<z.ZodString>; TripName: z.ZodNullable<z.ZodString>; Geometry: z.ZodNullable<z.ZodString>; ModifiedDate: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>; }, z.core.$strip>; export type TollTripInfo = z.infer<typeof tollTripInfoSchema>; //# sourceMappingURL=tollTripInfo.output.d.ts.map