UNPKG

ws-dottie

Version:

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

30 lines 1.17 kB
import { z } from "../../../../shared/zod"; /** * Schema for trip rate information * * Provides current toll rates for high occupancy lanes. Coverage Area: Statewide. */ export declare const tripRateSchema: z.ZodObject<{ Message: z.ZodNullable<z.ZodString>; MessageUpdateTime: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>; Toll: z.ZodNumber; TripName: z.ZodNullable<z.ZodString>; }, z.core.$strip>; export type TripRate = z.infer<typeof tripRateSchema>; /** * Schema for toll trips container * * Provides current toll rates for high occupancy lanes. Coverage Area: Statewide. */ export declare const tollTripsRatesSchema: z.ZodObject<{ LastUpdated: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>; Trips: z.ZodNullable<z.ZodArray<z.ZodObject<{ Message: z.ZodNullable<z.ZodString>; MessageUpdateTime: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>; Toll: z.ZodNumber; TripName: z.ZodNullable<z.ZodString>; }, z.core.$strip>>>; Version: z.ZodInt; }, z.core.$strip>; export type TollTripsRates = z.infer<typeof tollTripsRatesSchema>; //# sourceMappingURL=tollTripRates.output.d.ts.map