UNPKG

@casipe/react-service-provider

Version:
4 lines (3 loc) 242 B
import { Dispatch, SetStateAction } from 'react'; import { ServiceResponseData } from './interfaces'; export declare const useRequest: <T = any>(defaultValue?: T) => [ServiceResponseData<T>, Dispatch<SetStateAction<ServiceResponseData<T>>>];