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

Commit

Permalink
Merge pull request #167 from lumaxis/bugfix/typescript-error
Browse files Browse the repository at this point in the history
Fix TypeScript compiler issue with fulfilled assertion
  • Loading branch information
btd committed Feb 13, 2018
2 parents 9dcde0f + d1e9efe commit 0abf2d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions should.d.ts
Expand Up @@ -163,9 +163,9 @@ declare namespace should {
//promise
Promise(): this;

fulfilled: Promise<any>;
resolved: Promise<any>;
rejected: Promise<any>;
fulfilled(): Promise<any>;
resolved(): Promise<any>;
rejected(): Promise<any>;

fulfilledWith(obj: any): Promise<any>;
resolvedWith(obj: any): Promise<any>;
Expand Down

0 comments on commit 0abf2d5

Please sign in to comment.