ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
12 lines • 394 B
TypeScript
import { z } from "../../../../shared/zod";
/**
* Schema for Area - represents a map area
*
* Return list of areas and associated IDs
*/
export declare const areaSchema: z.ZodObject<{
MapArea: z.ZodNullable<z.ZodString>;
MapAreaDescription: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type Area = z.infer<typeof areaSchema>;
//# sourceMappingURL=alertAreas.output.d.ts.map