RequestOptions
Interface: RequestOptions
Defined in: src/types/common.types.ts:39
Internal request options passed to the base client
Properties
body?
optionalbody?:Record<string,unknown>
Defined in: src/types/common.types.ts:43
method
method:
HttpMethod
Defined in: src/types/common.types.ts:40
path
path:
string
Defined in: src/types/common.types.ts:41
query?
optionalquery?:Record<string,string|number|boolean|undefined>
Defined in: src/types/common.types.ts:42
signal?
optionalsignal?:AbortSignal
Defined in: src/types/common.types.ts:45
External AbortSignal to cancel the request. Combined with the internal timeout signal.