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 601 B
import { z } from "zod"; import { type ScheduleTerminal } from "@/schemas/wsf-schedule/scheduleTerminal.zod"; import type { EndpointDefinition } from "@/shared/endpoints"; /** Input schema for getScheduleTerminals */ declare const scheduleTerminalsInput: z.ZodObject<{ tripDate: z.ZodDate; }, z.core.$strip>; /** Endpoint metadata for getScheduleTerminals */ export declare const getScheduleTerminalsMeta: EndpointDefinition<ScheduleTerminalsInput, ScheduleTerminal[]>; export type ScheduleTerminalsInput = z.infer<typeof scheduleTerminalsInput>; export {}; //# sourceMappingURL=terminals.d.ts.map