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 • 564 B
TypeScript
import { z } from "zod";
import { type SailingResponse } from "@/schemas/wsf-schedule/sailingResponse.zod";
import type { EndpointDefinition } from "@/shared/endpoints";
/** Input schema for getAllSailings */
declare const allSailingsInput: z.ZodObject<{
schedRouteId: z.ZodNumber;
}, z.core.$strip>;
/** Endpoint metadata for getAllSailings */
export declare const getAllSailingsMeta: EndpointDefinition<AllSailingsInput, SailingResponse[]>;
export type AllSailingsInput = z.infer<typeof allSailingsInput>;
export {};
//# sourceMappingURL=allSailings.d.ts.map