ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
21 lines • 1 kB
TypeScript
/**
* @fileoverview Output schemas for WSF Fares API TerminalCombo endpoints
*
* These schemas define the response structures for WSF Fares API TerminalCombo endpoints.
*/
import { z } from "../../../../shared/zod";
export declare const terminalComboFaresSchema: z.ZodObject<{
DepartingDescription: z.ZodNullable<z.ZodString>;
ArrivingDescription: z.ZodNullable<z.ZodString>;
CollectionDescription: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type TerminalComboFares = z.infer<typeof terminalComboFaresSchema>;
export declare const terminalComboFaresVerboseSchema: z.ZodObject<{
DepartingTerminalID: z.ZodNumber;
DepartingDescription: z.ZodNullable<z.ZodString>;
ArrivingTerminalID: z.ZodNumber;
ArrivingDescription: z.ZodNullable<z.ZodString>;
CollectionDescription: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type TerminalComboFaresVerbose = z.infer<typeof terminalComboFaresVerboseSchema>;
//# sourceMappingURL=terminalCombo.output.d.ts.map