Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e65ccf0

Browse files
committed
Add missing return type
1 parent c807e9d commit e65ccf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

should.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ declare namespace should {
169169

170170
fulfilledWith(obj: any): Promise<any>;
171171
resolvedWith(obj: any): Promise<any>;
172-
rejectedWith(msg: RegExp | string | Error, properties?: {});
173-
rejectedWith(properties: {});
172+
rejectedWith(msg: RegExp | string | Error, properties?: {}): Promise<any>;
173+
rejectedWith(properties: {}): Promise<any>;
174174
finally: PromisedAssertion;
175175
eventually: PromisedAssertion;
176176

0 commit comments

Comments
 (0)