axios-mock-adapter icon indicating copy to clipboard operation
axios-mock-adapter copied to clipboard

Callbacks with typescript are very confusing

Open comod opened this issue 3 years ago • 0 comments

Callback looks like this:

type CallbackResponseSpecFunc = (
    config: AxiosRequestConfig
) => unknown[] | Promise<unknown[]>;

It tells nothing about what needs to be inside the array. Only by reading the readme i figured it out how to use.

comod avatar Dec 26 '21 17:12 comod