From e9402f9f235c6cbc5752d28ad502e3541726ac43 Mon Sep 17 00:00:00 2001 From: George Valotasios Date: Fri, 13 Dec 2013 14:22:49 +0100 Subject: [PATCH] Removed the extends from the IRouter definition --- express/express.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/express/express.d.ts b/express/express.d.ts index 488cc1aa5..942193376 100644 --- a/express/express.d.ts +++ b/express/express.d.ts @@ -62,7 +62,7 @@ declare module "express" { new (method: string, path: string, callbacks: Function[], options: any): Route; } - interface IRouter { + interface IRouter { /** * Map the given param placeholder `name`(s) to the given callback(s). *