From b6a08def3bc87d24241ae26baf2a2fc6441256a7 Mon Sep 17 00:00:00 2001 From: Scott McArthur Date: Tue, 18 Mar 2014 22:36:53 +0000 Subject: [PATCH] angular.d.ts IDocumentService extends IAugmentedJQuery Updated IDocumentService to extend IAugmentedJQuery rather than Document. As per the API (http://docs.angularjs.org/api/ng.$document) it provides "A jQuery or jqLite wrapper for the browser's window.document object." --- angularjs/angular.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index b7a258be68..4a9f128223 100755 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -430,7 +430,7 @@ declare module ng { // DocumentService // see http://docs.angularjs.org/api/ng.$document /////////////////////////////////////////////////////////////////////////// - interface IDocumentService extends Document {} + interface IDocumentService extends IAugmentedJQuery {} /////////////////////////////////////////////////////////////////////////// // ExceptionHandlerService