ws-dottie
Version: 
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
13 lines • 626 B
TypeScript
import { z } from "zod";
import { type TerminalMate } from "@/schemas/wsf-fares/terminalMate.zod";
import type { EndpointDefinition } from "@/shared/endpoints";
/** Input schema for getFaresTerminalMates */
declare const faresTerminalMatesInput: z.ZodObject<{
    tripDate: z.ZodDate;
    terminalId: z.ZodNumber;
}, z.core.$strip>;
/** Endpoint metadata for getFaresTerminalMates */
export declare const getFaresTerminalMatesMeta: EndpointDefinition<FaresTerminalMatesInput, TerminalMate[]>;
export type FaresTerminalMatesInput = z.infer<typeof faresTerminalMatesInput>;
export {};
//# sourceMappingURL=terminalMates.d.ts.map