UNPKG

ws-dottie

Version:

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

18 lines 616 B
import { z } from "../../shared/zod"; /** * Terminal information with identifier and display name. */ export declare const terminalSchema: z.ZodObject<{ TerminalID: z.ZodNumber; Description: z.ZodString; }, z.core.$strip>; export type Terminal = z.infer<typeof terminalSchema>; /** * Array of terminal records returned by terminal list endpoints. */ export declare const terminalListSchema: z.ZodArray<z.ZodObject<{ TerminalID: z.ZodNumber; Description: z.ZodString; }, z.core.$strip>>; export type TerminalList = z.infer<typeof terminalListSchema>; //# sourceMappingURL=terminals.output.d.ts.map