UNPKG

ws-dottie

Version:

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

12 lines 571 B
import { z } from "zod"; import { type RouteDetailsList } from "@/schemas/wsf-schedule/routeDetails.zod"; import type { EndpointDefinition } from "@/shared/endpoints"; /** Input schema for getRouteDetails */ declare const routeDetailsInput: z.ZodObject<{ tripDate: z.ZodDate; }, z.core.$strip>; /** Endpoint metadata for getRouteDetails */ export declare const getRouteDetailsMeta: EndpointDefinition<RouteDetailsListInput, RouteDetailsList>; export type RouteDetailsListInput = z.infer<typeof routeDetailsInput>; export {}; //# sourceMappingURL=routeDetails.d.ts.map