ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
10 lines • 437 B
TypeScript
import { z } from "../../shared/zod";
/**
* Shared Valid Date Range schema used by multiple WSF APIs.
*/
export declare const validDateRangeSchema: z.ZodObject<{
DateFrom: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>;
DateThru: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>;
}, z.core.$strip>;
export type ValidDateRange = z.infer<typeof validDateRangeSchema>;
//# sourceMappingURL=validDateRange.output.d.ts.map