UNPKG

ws-dottie

Version:

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

24 lines 1.02 kB
/** * @fileoverview WSDOT Travel Times API Input Schemas * * This module provides Zod schemas for validating input parameters for the WSDOT * Travel Times API endpoints. */ import { z } from "../../../../shared/zod"; /** * Schema for GetTravelTimeById input parameters * * Provides current travel times for many popular travel routes around Washington State. Coverage Area: Seattle, Tacoma, and Snoqualmie Pass areas. */ export declare const travelTimeByIdInputSchema: z.ZodObject<{ TravelTimeID: z.ZodNumber; }, z.core.$strip>; export type TravelTimeByIdInput = z.infer<typeof travelTimeByIdInputSchema>; /** * Schema for GetTravelTimes input parameters * * Provides current travel times for many popular travel routes around Washington State. Coverage Area: Seattle, Tacoma, and Snoqualmie Pass areas. */ export declare const travelTimesInputSchema: z.ZodObject<{}, z.core.$strip>; export type TravelTimesInput = z.infer<typeof travelTimesInputSchema>; //# sourceMappingURL=travelTimeRoutes.input.d.ts.map