We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7b6815 + 6bc6cdd commit 54f0643Copy full SHA for 54f0643
should/should.d.ts
@@ -49,6 +49,10 @@ interface ShouldAssertion {
49
matchEach(other: (val: any) => any, description?: string): ShouldAssertion;
50
matchEach(regexp: RegExp, description?: string): ShouldAssertion;
51
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;
56
length(n: number, description?: string): ShouldAssertion;
57
property(name: string, description?: string): ShouldAssertion;
58
property(name: string, val: any, description?: string): ShouldAssertion;
0 commit comments