UNPKG

ws-dottie

Version:

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

16 lines 811 B
/** * @fileoverview Output schemas for WSF Fares API FareTotals endpoint * * These schemas define the response structures for WSF Fares API FareTotals endpoint. */ import { z } from "../../../../shared/zod"; export declare const fareTotalTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>]>; export type FareTotalType = z.infer<typeof fareTotalTypeSchema>; export declare const fareTotalSchema: z.ZodObject<{ TotalType: z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>]>; Description: z.ZodNullable<z.ZodString>; BriefDescription: z.ZodNullable<z.ZodString>; Amount: z.ZodNumber; }, z.core.$strip>; export type FareTotal = z.infer<typeof fareTotalSchema>; //# sourceMappingURL=fareTotals.output.d.ts.map