ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
11 lines • 532 B
TypeScript
/**
* @fileoverview Data Fetching for WSDOT and WSF APIs
*
* This module provides a unified fetch approach with the main `fetchDottie` function
* that supports both transport strategies (native vs JSONP) and validation approaches (none vs Zod).
*/
export type { FetchStrategy, LoggingMode, } from "../types";
export { fetchDottie } from "./fetchDottie";
export { type ApiError, type ErrorContext, isApiError, } from "./internal/handleError";
export type { FetchDottieParams } from "./types";
//# sourceMappingURL=index.d.ts.map