UNPKG

ws-dottie

Version:

Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration

26 lines 1.05 kB
/** * @fileoverview Barrel export for all client endpoint definitions * * This file serves as the single source of truth for all endpoint definitions, * providing a centralized import point for CLI, validator, and other consumers. * Each endpoint definition contains metadata, handler, and TanStack Query options. */ // WSDOT API endpoints export * from "./wsdot-border-crossings"; export * from "./wsdot-bridge-clearances"; export * from "./wsdot-commercial-vehicle-restrictions"; export * from "./wsdot-highway-alerts"; export * from "./wsdot-highway-cameras"; export * from "./wsdot-mountain-pass-conditions"; export * from "./wsdot-toll-rates"; export * from "./wsdot-traffic-flow"; export * from "./wsdot-travel-times"; export * from "./wsdot-weather-information"; export * from "./wsdot-weather-information-extended"; export * from "./wsdot-weather-stations"; // WSF API endpoints export * from "./wsf-fares"; export * from "./wsf-schedule"; export * from "./wsf-terminals"; export * from "./wsf-vessels"; //# sourceMappingURL=index.js.map