Type aliases
HttpBodyType
HttpBodyType<T>: T | string | Blob | ArrayBufferView | ArrayBuffer | FormData | URLSearchParams | ReadableStream<Uint8Array> | null | undefined
Type parameters
HttpEvent
Type parameters
HttpMethodBodyType
HttpMethodBodyType: "POST" | "PUT" | "PATCH"
HttpMethodNoBodyType
HttpMethodNoBodyType: "GET" | "DELETE" | "OPTIONS" | "HEAD" | "JSONP"
HttpMethodType
HttpMethodType: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "OPTIONS" | "HEAD" | "JSONP"
HttpObserveType
HttpObserveType: "body" | "events" | "response"
HttpResponseType
HttpResponseType: "arraybuffer" | "blob" | "json" | "text"
IHttpHeaders
IHttpHeaders: string | {}