UNPKG

ws-dottie

Version:

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

10 lines 518 B
/** * @fileoverview Input schemas for WSF Fares API ValidDateRange endpoint * * These schemas define the input parameters for WSF Fares API ValidDateRange endpoint. * Note: AccessCode is handled separately and is not included in these schemas. */ import { z } from "../../../../shared/zod"; export declare const faresValidDateRangeInputSchema: z.ZodObject<{}, z.core.$strip>; export type FaresValidDateRangeInput = z.infer<typeof faresValidDateRangeInputSchema>; //# sourceMappingURL=validDateRange.input.d.ts.map