From 803fd62a1005b3afe0c9922643b1c58feb64ffd6 Mon Sep 17 00:00:00 2001 From: Benjamin Pannell Date: Mon, 1 Feb 2016 10:01:00 +0200 Subject: [PATCH] fix: Correctly specify generic inheritance Bit of my C# sneaking in there... --- ravenjs/ravenjs.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ravenjs/ravenjs.d.ts b/ravenjs/ravenjs.d.ts index 434d804ab..cc06a4dfc 100644 --- a/ravenjs/ravenjs.d.ts +++ b/ravenjs/ravenjs.d.ts @@ -113,8 +113,8 @@ interface RavenStatic { */ wrap(func: Function): Function; wrap(options: RavenOptions, func: Function): Function; - wrap(func: T): T; - wrap(options: RavenOptions, func: T): T; + wrap(func: T): T; + wrap(options: RavenOptions, func: T): T; /* * Uninstalls the global error handler.