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 510 B
import { z } from "zod"; import { type Alert } from "@/schemas/wsf-schedule/alert.zod"; import type { EndpointDefinition } from "@/shared/endpoints"; /** Input schema for getAlerts */ declare const scheduleAlertsInput: z.ZodObject<{}, z.core.$strip>; /** Endpoint metadata for getAlerts */ export declare const getScheduleAlertsMeta: EndpointDefinition<ScheduleAlertsInput, Alert[]>; export type ScheduleAlertsInput = z.infer<typeof scheduleAlertsInput>; export {}; //# sourceMappingURL=scheduleAlerts.d.ts.map