UNPKG

ws-dottie

Version:

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

14 lines 658 B
/** * @fileoverview WSF Schedule API Input Schemas for Valid Date Range * * This module provides Zod schemas for validating input parameters for the WSF * Schedule API endpoints related to valid date range operations. */ import { z } from "../../../../shared/zod"; /** * Schema for ValidDateRange input parameters * * This operation retrieves a date range for which schedule data is currently published & available. */ export declare const scheduleValidDateRangeInputSchema: z.ZodObject<{}, z.core.$strip>; export type ScheduleValidDateRangeInput = z.infer<typeof scheduleValidDateRangeInputSchema>; //# sourceMappingURL=validDateRange.input.d.ts.map