Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
GerkinDev committed Jul 18, 2022
1 parent 7361ded commit 7fa174d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion types/index.d.ts
Expand Up @@ -387,7 +387,13 @@ declare namespace jest {
* @param {Function} type
* @param {String | RegExp} message
*/
toThrowWithMessage(type: (new (...args: any[]) => {message: string}) | (abstract new (...args: any[]) => {message: string}) | ((...args: any[]) => {message: string}), message: string | RegExp): R;
toThrowWithMessage(
type:
| (new (...args: any[]) => { message: string })
| (abstract new (...args: any[]) => { message: string })
| ((...args: any[]) => { message: string }),
message: string | RegExp,
): R;

/**
* Use `.toBeEmptyObject` when checking if a value is an empty `Object`.
Expand Down

0 comments on commit 7fa174d

Please sign in to comment.