Type aliases
ArrayBufferLike
ArrayBufferLike: ArrayBufferTypes[keyof ArrayBufferTypes]
ArrayBufferView
AxiosRequestHeaders
Axios
Request
Headers
: Record<string, string | number | boolean>AxiosResponseHeaders
Axios
Response
Headers
: Record<string, string> & { set-cookie
?: string[] }BufferEncoding
BufferEncoding: "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "base64url" | "latin1" | "binary" | "hex"
Exclude
Exclude<T, U>: T extends U ? never : T
Type parameters
IteratorResult
Type parameters
Method
Method: "get" | "GET" | "delete" | "DELETE" | "head" | "HEAD" | "options" | "OPTIONS" | "post" | "POST" | "put" | "PUT" | "patch" | "PATCH" | "purge" | "PURGE" | "link" | "LINK" | "unlink" | "UNLINK"
Omit
Type parameters
Pick
Pick<T, K>: { [ P in K]: T[P] }
Type parameters
Record
Record<K, T>: { [ P in K]: T }
Type parameters
ResponseType
ResponseType: "arraybuffer" | "blob" | "document" | "json" | "text" | "stream"
Style
Style: "special" | "number" | "bigint" | "boolean" | "undefined" | "null" | "string" | "symbol" | "date" | "regexp" | "module"
TypedArray
TypedArray: Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array | Int8Array | Int16Array | Int32Array | BigUint64Array | BigInt64Array | Float32Array | Float64Array
WithImplicitCoercion
WithImplicitCoercion<T>: T | { valueOf: any }
Type parameters
Exclude from T those types that are assignable to U