ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
25 lines • 1 kB
TypeScript
import { z } from "../../../../shared/zod";
/**
* WeatherInfo schema
*
* Current information from a weather station.
*/
export declare const weatherInfoSchema: z.ZodObject<{
BarometricPressure: z.ZodNullable<z.ZodNumber>;
Latitude: z.ZodNumber;
Longitude: z.ZodNumber;
PrecipitationInInches: z.ZodNullable<z.ZodNumber>;
ReadingTime: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>;
RelativeHumidity: z.ZodNullable<z.ZodNumber>;
SkyCoverage: z.ZodNullable<z.ZodString>;
StationID: z.ZodInt;
StationName: z.ZodNullable<z.ZodString>;
TemperatureInFahrenheit: z.ZodNullable<z.ZodNumber>;
Visibility: z.ZodNullable<z.ZodInt>;
WindDirection: z.ZodNullable<z.ZodNumber>;
WindDirectionCardinal: z.ZodNullable<z.ZodString>;
WindGustSpeedInMPH: z.ZodNullable<z.ZodNumber>;
WindSpeedInMPH: z.ZodNullable<z.ZodNumber>;
}, z.core.$strip>;
export type WeatherInfo = z.infer<typeof weatherInfoSchema>;
//# sourceMappingURL=weatherInfo.output.d.ts.map