Skip to content

Commit 54f0643

Browse files
committed
Merge pull request DefinitelyTyped#5991 from jccarvalhosa/master
adding matchAny to should.d.ts
2 parents c7b6815 + 6bc6cdd commit 54f0643

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

should/should.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ interface ShouldAssertion {
4949
matchEach(other: (val: any) => any, description?: string): ShouldAssertion;
5050
matchEach(regexp: RegExp, description?: string): ShouldAssertion;
5151
matchEach(other: any, description?: string): ShouldAssertion;
52+
matchAny(other: {}, description?: string): ShouldAssertion;
53+
matchAny(other: (val: any) => any, description?: string): ShouldAssertion;
54+
matchAny(regexp: RegExp, description?: string): ShouldAssertion;
55+
matchAny(other: any, description?: string): ShouldAssertion;
5256
length(n: number, description?: string): ShouldAssertion;
5357
property(name: string, description?: string): ShouldAssertion;
5458
property(name: string, val: any, description?: string): ShouldAssertion;

0 commit comments

Comments
 (0)