From fac68f1264d168e734c3a6ae54b7e157d414ede1 Mon Sep 17 00:00:00 2001 From: jseanxu Date: Wed, 9 Apr 2014 15:14:27 -0700 Subject: [PATCH] As the docs say, these 2 properties are HTMLElements. --- winjs/winjs.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/winjs/winjs.d.ts b/winjs/winjs.d.ts index a27a5350e..d9d47c03f 100644 --- a/winjs/winjs.d.ts +++ b/winjs/winjs.d.ts @@ -3695,7 +3695,7 @@ declare module WinJS.UI { /** * Gets or sets the HTMLElement with a 'content' type AppBarCommand that should receive focus whenever focus moves by the user pressing HOME or the arrow keys, from the previous AppBarCommand to this AppBarCommand. **/ - firstElementFocus: any; + firstElementFocus: HTMLElement; /** * Gets or sets the Flyout object displayed by this command. The specified flyout is shown when the AppBarCommand's button is invoked. @@ -3725,7 +3725,7 @@ declare module WinJS.UI { /** * Gets or sets the HTMLElement with a 'content' type AppBarCommand that should receive focus whenever focus moves by the user pressing END or the arrow keys, from the previous AppBarCommand to this AppBarCommand. **/ - lastElementFocus: any; + lastElementFocus: HTMLElement; /** * Gets or sets the function to be invoked when the command is clicked.