UNPKG

http-repository-cache

Version:

A library for making HTTP requests using the repository pattern with an built in caching system.

7 lines (6 loc) 571 B
export type { default as HttpRequestAdapter, HttpRequestParams } from "./httpRequest/HttpRequestAdapter"; export { default as FetchHttpRequest, type FetchRequestOptions } from "./httpRequest/fetch/FetchHttpRequest"; export { default as HttpMethod } from "./httpRequest/HttpMethod"; export { default as DefaultHttpExceptionType } from "./httpRequest/exception/DefaultHttpExceptionType"; export type { default as HttpException } from "./httpRequest/exception/HttpException"; export { default as RepositoryCache, type RequestType } from "./repositoryCache/RepositoryCache";