Skip to content

Commit

Permalink
fix(typescript): fix jest typings mismatch
Browse files Browse the repository at this point in the history
refs #62
  • Loading branch information
matheo authored and JamieMason committed Jan 29, 2018
1 parent e32224d commit 3cb9571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jasmine-matchers.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare namespace jasmine {
interface Matchers {
interface Matchers<T> {
toBeAfter(otherDate: Date, expectationFailOutput?: any): boolean;
toBeArray(expectationFailOutput?: any): boolean;
toBeArrayOfBooleans(expectationFailOutput?: any): boolean;
Expand Down Expand Up @@ -80,4 +80,4 @@ declare namespace jasmine {
toThrowAnyError(expectationFailOutput?: any): boolean;
toThrowErrorOfType(type: string, expectationFailOutput?: any): boolean;
}
}
}

0 comments on commit 3cb9571

Please sign in to comment.