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 #164 from chris-grabcad/UpdateDefinitionsOfTrueAnd…
Browse files Browse the repository at this point in the history
…FalseInTypings

Add message? to [Tt]rue and [Ff]alse so they can be used in ts tests
  • Loading branch information
btd committed Feb 12, 2018
2 parents 9748ae6 + 7917c9c commit 9dcde0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions should.d.ts
Expand Up @@ -73,11 +73,11 @@ declare namespace should {
only: this;

// bool
true(): this;
True(): this;
true(message?: string): this;
True(message?: string): this;

false(): this;
False(): this;
false(message?: string): this;
False(message?: string): this;

ok(): this;

Expand Down

0 comments on commit 9dcde0f

Please sign in to comment.