Hello, I am trying to use this in a lambda and I am using typescript. When I try to set request in the config to axios as described in the readme, I get the following compilation error.
Type 'AxiosStatic' is not assignable to type '(fetchContext: FetchContext) => Promise<Response>'.
Types of parameters 'config' and 'fetchContext' are incompatible.
Type 'FetchContext' is not assignable to type 'AxiosRequestConfig'.
Types of property 'method' are incompatible.
Type 'string' is not assignable to type 'Method'.ts(2322)
Hello, I am trying to use this in a lambda and I am using typescript. When I try to set
requestin the config toaxiosas described in the readme, I get the following compilation error.