Skip to content

Commit

Permalink
Temporary fix build issue by removing Request.send type
Browse files Browse the repository at this point in the history
  • Loading branch information
dilame committed Apr 5, 2019
1 parent 03efa8f commit 4747bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export class Request {
throw new Exceptions.RequestError(json);
}

send(options = {}, attempts = 0): Bluebird<any> {
send(options = {}, attempts = 0): any {
return Bluebird.try(async () => {
const rawResponse = await this.sendAndGetRaw(options);
this.session.requestEnd$.next(rawResponse);
Expand Down

0 comments on commit 4747bcd

Please sign in to comment.