diff --git a/types/matchers-standalone.d.ts b/types/matchers-standalone.d.ts index d2bb31f..175e915 100644 --- a/types/matchers-standalone.d.ts +++ b/types/matchers-standalone.d.ts @@ -6,12 +6,12 @@ interface MatcherReturnType { } interface OverloadedMatchers { - toHaveClass: (expected: any, ...rest: string[]) => MatcherReturnType - toHaveClass: ( + toHaveClass(expected: any, ...rest: string[]) : MatcherReturnType + toHaveClass( expected: any, className: string, options?: {exact: boolean}, - ) => MatcherReturnType + ) : MatcherReturnType } declare namespace matchersStandalone {