UNPKG

use-fetch-url

Version:

A custom hooks in TypeScript for fetching data from a URL and managing its state, including status and error information.

6 lines (5 loc) 113 B
export declare enum FetchStatus { LOADING = "LOADING", COMPLETE = "COMPLETE", ERROR = "ERROR" }