ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
33 lines • 1.42 kB
TypeScript
/**
* WS-Dottie - Washington State Transportation APIs
*
* A comprehensive TypeScript library for accessing Washington State Department of
* Transportation (WSDOT) and Washington State Ferries (WSF) APIs with built-in
* validation, caching, and type safety.
*
* This library provides:
* - Type-safe API clients for all WSDOT and WSF endpoints
* - Automatic data validation using Zod schemas
* - Smart caching strategies optimized for transportation data
* - React hooks for seamless integration
* - CLI interface for command-line usage
*/
export * from "./shared";
export * from "./clients/wsdot-border-crossings";
export * from "./clients/wsdot-bridge-clearances";
export * from "./clients/wsdot-commercial-vehicle-restrictions";
export * from "./clients/wsdot-highway-alerts";
export * from "./clients/wsdot-highway-cameras";
export * from "./clients/wsdot-mountain-pass-conditions";
export * from "./clients/wsdot-toll-rates";
export * from "./clients/wsdot-traffic-flow";
export * from "./clients/wsdot-travel-times";
export * from "./clients/wsdot-weather-information";
export * from "./clients/wsdot-weather-information-extended";
export * from "./clients/wsdot-weather-stations";
export * from "./clients/wsf-fares";
export * from "./clients/wsf-schedule";
export * from "./clients/wsf-terminals";
export * from "./clients/wsf-vessels";
export * from "./types";
//# sourceMappingURL=index.d.ts.map