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 • 628 B
TypeScript
/**
* @fileoverview WSF Schedule API Input Schemas for Schedule Alerts
*
* This module provides Zod schemas for validating input parameters for the WSF
* Schedule API endpoints related to schedule alert operations.
*/
import { z } from "../../../../shared/zod";
/**
* Schema for AllAlerts input parameters
*
* This operation provides alert information tailored for routes, bulletins, service disruptions, etc. */
export declare const scheduleAlertsInputSchema: z.ZodObject<{}, z.core.$strip>;
export type ScheduleAlertsInput = z.infer<typeof scheduleAlertsInputSchema>;
//# sourceMappingURL=scheduleAlerts.input.d.ts.map