Kay P
Results
2
comments of
Kay P
after running into similar issues, I noticed that in the codebase we have [this](https://github.com/axios/axios/blob/cff996779b272a5e94c2b52f5503ccf668bc42dc/index.d.cts#L641) ``` interface CancelToken { promise: Promise; reason?: Cancel; throwIfRequested(): void; } ``` but [lib/cancel/CancelToken.js](https://github.com/axios/axios/blob/bdf493cf8b84eb3e3440e72d5725ba0f138e0451/lib/cancel/CancelToken.js#L12) defines a...