You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error TS2684: The 'this' context of type 'Wretch<FormUrlAddon, unknown, undefined>' is not assignable to method's 'this' of type 'FormUrlAddon & Wretch<FormUrlAddon, unknown, undefined>'.
Self & Wretch<Self, Chain, Resolver> -> Wretch<Self, Chain, Resolver>
I found that every handler removes the self type, causes the next handler to fail to get the self type.
Is my understanding wrong?
The text was updated successfully, but these errors were encountered:
version
2.0.1
error
TS2684: The 'this' context of type 'Wretch<FormUrlAddon, unknown, undefined>' is not assignable to method's 'this' of type 'FormUrlAddon & Wretch<FormUrlAddon, unknown, undefined>'.
wretch/src/types.ts
Lines 314 to 318 in 4c4838d
Self & Wretch<Self, Chain, Resolver>
->Wretch<Self, Chain, Resolver>
I found that every handler removes the self type, causes the next handler to fail to get the self type.
Is my understanding wrong?
The text was updated successfully, but these errors were encountered: