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
Class static side 'typeof WebClientSession' incorrectly extends base class static side 'typeof WebClient'.
Types of property 'create' are incompatible.
Type '(webClient: WebClient) => WebClientSession' is not assignable to type '{ (vertx: Vertx): WebClient; (vertx: Vertx, options: WebClientOptions): WebClient; }'.
Types of parameters 'webClient' and 'vertx' are incompatible.
Type 'Vertx' is missing the following properties from type 'WebClient': request, requestAbs, get, getAbs, and 10 more.
The code seems to build and work after I modified the following function signature in index.d.ts:
As reported by
tsc
:The code seems to build and work after I modified the following function signature in
index.d.ts
:to
The text was updated successfully, but these errors were encountered: