(options: AxiosRequestConfig)
| 570 | } |
| 571 | |
| 572 | function getRequestConfig2(options: AxiosRequestConfig): AxiosRequestConfig { |
| 573 | return { |
| 574 | ...options, |
| 575 | headers: { |
| 576 | ...(options.headers as AxiosHeaders).toJSON(), |
| 577 | Authorization: `Bearer ...`, |
| 578 | }, |
| 579 | }; |
| 580 | } |
| 581 | |
| 582 | // Max Rate |
| 583 |