From 375d64188a59d22929054d98c32b8a96d9330577 Mon Sep 17 00:00:00 2001 From: Anand Prakash Date: Mon, 5 May 2014 19:02:45 -0700 Subject: [PATCH] Updated IOHelper.writeText to return WinJS.Promise instead of WinJS.Promise --- winjs/winjs.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winjs/winjs.d.ts b/winjs/winjs.d.ts index b5ded7a59..2b8e95c35 100644 --- a/winjs/winjs.d.ts +++ b/winjs/winjs.d.ts @@ -64,7 +64,7 @@ interface IOHelper { * @param text The content to be written to the file. * @returns A promise that completes with a value that is the number of characters written. **/ - writeText(fileName: string, text: string): WinJS.Promise; + writeText(fileName: string, text: string): WinJS.Promise; } /**