Skip to main content
Version: v7.0.0

RequestInstanceProperties


Import
import { RequestInstanceProperties } from "@hyper-fetch/core"

Preview

type RequestInstanceProperties = {
client?: ClientInstance;
endpoint?: string;
error?: any;
hasParams?: boolean;
hasPayload?: boolean;
hasQueryParams?: boolean;
payload?: any;
queryParams?: any;
response?: any;
}

Structure

RequestInstanceProperties
NameTypeDescription
client
ClientInstance
endpoint
string
error
any
hasParams
boolean
hasPayload
boolean
hasQueryParams
boolean
payload
any
queryParams
any
response
any
On this page