UNPKG

axios-http2-adapter

Version:

`axios-http2-adapter` is a custom adapter designed to fill a gap in the current Axios ecosystem. Despite widespread demand, as evidenced by [axios issue #1175](https://github.com/axios/axios/issues/1175), Axios has yet to implement native HTTP/2 support.

8 lines (7 loc) 267 B
import { AxiosAdapter } from 'axios'; import * as http2 from 'http2-wrapper'; export interface HTTP2AdapterConfig { agent?: http2.Agent; force?: boolean; } export declare function createHTTP2Adapter(adapterConfig?: Partial<HTTP2AdapterConfig>): AxiosAdapter;