UNPKG

ws-dottie

Version:

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

27 lines 1.03 kB
import { z } from "../../../../shared/zod"; export declare const cameraSchema: z.ZodObject<{ CameraID: z.ZodNumber; CameraLocation: 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>>; CameraOwner: z.ZodNullable<z.ZodString>; Description: z.ZodNullable<z.ZodString>; DisplayLatitude: z.ZodNumber; DisplayLongitude: z.ZodNumber; ImageHeight: z.ZodNumber; ImageURL: z.ZodNullable<z.ZodString>; ImageWidth: z.ZodNumber; IsActive: z.ZodBoolean; OwnerURL: z.ZodNullable<z.ZodString>; Region: z.ZodNullable<z.ZodString>; SortOrder: z.ZodNumber; Title: z.ZodNullable<z.ZodString>; }, z.core.$strip>; export type Camera = z.infer<typeof cameraSchema>; export type { RoadwayLocation } from "../../../shared"; //# sourceMappingURL=cameras.output.d.ts.map