From cfc14059a1c1d0ffcc9eb3736ff762ed303b926c Mon Sep 17 00:00:00 2001 From: Patrick Magee Date: Sat, 31 May 2014 22:03:13 +0100 Subject: [PATCH] Fixed definition issue where PageRequestManager extends from EventArgs which is invalid. --- microsoft-ajax/microsoft.ajax.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-ajax/microsoft.ajax.d.ts b/microsoft-ajax/microsoft.ajax.d.ts index 6b765e565..b6ca115e8 100644 --- a/microsoft-ajax/microsoft.ajax.d.ts +++ b/microsoft-ajax/microsoft.ajax.d.ts @@ -3835,7 +3835,7 @@ declare module Sys { * Manages client partial-page updates of server UpdatePanel controls. In addition, defines properties, events, and methods that can be used to customize a Web page with client script. * @see {@link http://msdn.microsoft.com/en-us/library/bb311028(v=vs.100).aspx} */ - class PageRequestManager extends EventArgs { + class PageRequestManager { //#region Constructors