UNPKG

react-handy-tools

Version:

Handy tools for React

13 lines (12 loc) 281 B
export interface useFetchProps { apiHost: string; endpoint: string; param?: string | number; } declare function useFetch(props: useFetchProps): { data: any[] | null; isLoading: boolean; isError: boolean; refetch: () => void; }; export default useFetch;