ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
15 lines • 536 B
TypeScript
import { z } from "../../../../shared/zod";
/**
* WeatherStationData schema
*
* Provides current information from weather stations. Coverage Area: Statewide.
*/
export declare const weatherStationSchema: z.ZodObject<{
Latitude: z.ZodNumber;
Longitude: z.ZodNumber;
StationCode: z.ZodInt;
StationName: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type WeatherStation = z.infer<typeof weatherStationSchema>;
export type WeatherStationData = WeatherStation;
//# sourceMappingURL=weatherStations.output.d.ts.map