ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
14 lines • 542 B
TypeScript
import { z } from "../../shared/zod";
/**
* Roadway location information including route, milepost, coordinates, and direction.
*/
export declare const roadwayLocationSchema: 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>;
export type RoadwayLocation = z.infer<typeof roadwayLocationSchema>;
//# sourceMappingURL=roadwayLocationSchema.d.ts.map