From 64eccdfcb734df89956a8b3db75d9aa0c185f88f Mon Sep 17 00:00:00 2001 From: Bruno Leonardo Michels Date: Tue, 3 Nov 2015 20:12:48 -0200 Subject: [PATCH] Fix implicit types on assertsharp --- assertsharp/assertsharp.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assertsharp/assertsharp.d.ts b/assertsharp/assertsharp.d.ts index c47652a355..e66442cf78 100644 --- a/assertsharp/assertsharp.d.ts +++ b/assertsharp/assertsharp.d.ts @@ -8,7 +8,7 @@ declare module "assertsharp" { static AreEqual(expected: T, actual: T, message?: string): void; static AreNotEqual(notExpected: T, actual: T, message?: string): void; static AreNotSame(notExpected: T, actual: T, message?: string): void; - static AreSequenceEqual(expected: T[], actual: T[], equals?: (x, y) => boolean, message?: string): void; + static AreSequenceEqual(expected: T[], actual: T[], equals?: (x: any, y: any) => boolean, message?: string): void; static Fail(message?: string): void; static IsFalse(actual: boolean, message?: string): void; static IsInstanceOfType(actual: any, expectedType: Function, message?: string): void;