UNPKG

react-axios-progressbar

Version:

Show a ProgressBar in React whenever an axios request is in progress.

8 lines (7 loc) 257 B
import { AxiosInstance } from 'axios'; type Props = { style?: Record<string, unknown>; axiosInstance: AxiosInstance; }; export declare function ProgressBar({ style, axiosInstance }: Props): import("react/jsx-runtime").JSX.Element | null; export {};