Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Commit

Permalink
Add missing return type
Browse files Browse the repository at this point in the history
  • Loading branch information
btd committed Oct 7, 2017
1 parent c807e9d commit e65ccf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions should.d.ts
Expand Up @@ -169,8 +169,8 @@ declare namespace should {

fulfilledWith(obj: any): Promise<any>;
resolvedWith(obj: any): Promise<any>;
rejectedWith(msg: RegExp | string | Error, properties?: {});
rejectedWith(properties: {});
rejectedWith(msg: RegExp | string | Error, properties?: {}): Promise<any>;
rejectedWith(properties: {}): Promise<any>;
finally: PromisedAssertion;
eventually: PromisedAssertion;

Expand Down

0 comments on commit e65ccf0

Please sign in to comment.