UseQueueOptionsType
Import
import { UseQueueOptionsType } from "@hyper-fetch/react"
Source
Package
Preview
type UseQueueOptionsType = {
dispatcherType?: auto | fetch | submit;
keepFinishedRequests?: boolean;
}
Structure
UseQueueOptionsType
| Name | Type | Description |
|---|---|---|
| dispatcherType | | Which dispatcher to use: "auto" picks based on request method, "fetch" or "submit" forces a specific one |
| keepFinishedRequests | | When true, completed requests remain in the queue list for inspection |
