ReqorGetOptions
ts
type ReqorGetOptions = {
retry?: ReqorRetryConfig;
timeout?: ReqorTimeoutConfig;
totalTimeout?: ReqorTotalTimeoutConfig;
params?: {
[key: string]: string | number | boolean | null | undefined;
}[];
middleware?: ReqorLocalMiddlewareInput;
};Properties
.retry?: ReqorRetryConfig;
.timeout?: ReqorTimeoutConfig;
.totalTimeout?: ReqorTotalTimeoutConfig;
.params?: { [key: string]: string | number | boolean | null | undefined;}[];
Params for the GET request.
