/** * Server-side data fetching for pages. Provides the DataFetcher class and * helper functions like `notFound` and `redirect` for route-level data loading. * * @module data */ export type { CacheEntry, DataContext, DataResponseMetadata, DataResult, InferGetServerDataProps, PageWithData, ResponseCookie, StaticDataResult, StaticPathsResult, } from "./types.js"; export { DataFetcher, type FetchDataOptions } from "./data-fetcher.js"; export { notFound, redirect } from "./helpers.js"; //# sourceMappingURL=index.d.ts.map