UNPKG

ws-dottie

Version:

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

22 lines 844 B
import { z } from "../../../../shared/zod"; /** * Schema for border crossing wait time data. * * Each record describes the latest wait time for a Washington border * crossing into Canada. */ export declare const borderCrossingSchema: z.ZodObject<{ BorderCrossingLocation: z.ZodNullable<z.ZodObject<{ Description: z.ZodNullable<z.ZodString>; Direction: z.ZodNullable<z.ZodString>; Latitude: z.ZodNumber; Longitude: z.ZodNumber; MilePost: z.ZodNumber; RoadName: z.ZodNullable<z.ZodString>; }, z.core.$strip>>; CrossingName: z.ZodNullable<z.ZodString>; Time: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>; WaitTime: z.ZodInt; }, z.core.$strip>; export type BorderCrossing = z.infer<typeof borderCrossingSchema>; //# sourceMappingURL=borderCrossingData.output.d.ts.map