Interface UseHttpRequestHandlerReturn
interface UseHttpRequestHandlerReturn { craftDeleteRequest: (<TPathParams, TQueryParams, TResponseBody>(factoryProps: FactoryFunctionPropsWithoutRequestBody<TPathParams, TQueryParams, TResponseBody>) => RequestFunctionWithoutRequestBody<TPathParams, TQueryParams, TResponseBody>); craftGetRequest: (<TPathParams, TQueryParams, TResponseBody>(factoryProps: FactoryFunctionPropsWithoutRequestBody<TPathParams, TQueryParams, TResponseBody>) => RequestFunctionWithoutRequestBody<TPathParams, TQueryParams, TResponseBody>); craftHeadRequest: (() => (() => Promise<HttpResponse<{}, {}, never, never>>)); craftLinkRequest: (<TPathParams, TQueryParams, TRequestBody, TResponseBody>(factoryProps: FactoryFunctionProps<TPathParams, TQueryParams, TRequestBody, TResponseBody>) => RequestFunctionWithRequestBody<TPathParams, TQueryParams, TRequestBody, TResponseBody>); craftOptionsRequest: (<TPathParams, TQueryParams, TResponseBody>(factoryProps: FactoryFunctionPropsWithoutRequestBody<TPathParams, TQueryParams, TResponseBody>) => RequestFunctionWithoutRequestBody<TPathParams, TQueryParams, TResponseBody>); craftPatchRequest: (<TPathParams, TQueryParams, TRequestBody, TResponseBody>(factoryProps: FactoryFunctionProps<TPathParams, TQueryParams, TRequestBody, TResponseBody>) => RequestFunctionWithRequestBody<TPathParams, TQueryParams, TRequestBody, TResponseBody>); craftPostRequest: (<TPathParams, TQueryParams, TRequestBody, TResponseBody>(factoryProps: FactoryFunctionProps<TPathParams, TQueryParams, TRequestBody, TResponseBody>) => RequestFunctionWithRequestBody<TPathParams, TQueryParams, TRequestBody, TResponseBody>); craftPurgeRequest: (<TPathParams, TQueryParams, TRequestBody, TResponseBody>(factoryProps: FactoryFunctionProps<TPathParams, TQueryParams, TRequestBody, TResponseBody>) => RequestFunctionWithRequestBody<TPathParams, TQueryParams, TRequestBody, TResponseBody>); craftPutRequest: (<TPathParams, TQueryParams, TRequestBody, TResponseBody>(factoryProps: FactoryFunctionProps<TPathParams, TQueryParams, TRequestBody, TResponseBody>) => RequestFunctionWithRequestBody<TPathParams, TQueryParams, TRequestBody, TResponseBody>); craftUnlinkRequest: (<TPathParams, TQueryParams, TRequestBody, TResponseBody>(factoryProps: FactoryFunctionProps<TPathParams, TQueryParams, TRequestBody, TResponseBody>) => RequestFunctionWithRequestBody<TPathParams, TQueryParams, TRequestBody, TResponseBody>); } Properties
craftHeadRequest
craftHeadRequest: (() => (() => Promise<HttpResponse<{}, {}, never, never>>))
Interface representing the return type of the useHttpRequestHandler hook.