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 • 590 B
TypeScript
/**
* @fileoverview WSF Schedule API Input Schemas for Active Seasons
*
* This module provides Zod schemas for validating input parameters for the WSF
* Schedule API endpoints related to active seasons operations.
*/
import { z } from "../../../../shared/zod";
/**
* Schema for ActiveScheduledSeasons input parameters
*
* This operation retrieves a summary of active seasons. */
export declare const activeSeasonsInputSchema: z.ZodObject<{}, z.core.$strip>;
export type ActiveSeasonsInput = z.infer<typeof activeSeasonsInputSchema>;
//# sourceMappingURL=activeSeasons.input.d.ts.map