Change type of LaunchDataEntry.entry from File to FileEntry

entry property of LaunchDataItem is actually a FileEntry, not a File. See https://developer.chrome.com/apps/app_runtime#event-onLaunched
This commit is contained in:
Aleksandr Dobkin
2015-01-10 00:03:08 -08:00
parent 4abbdff87f
commit abdcc85487

View File

@@ -18,7 +18,7 @@ declare module chrome.app.runtime {
}
interface LaunchDataItem {
entry: File;
entry: FileEntry;
type: string;
}
@@ -367,4 +367,4 @@ declare module chrome.sockets.tcpServer {
var onAccept: Event<AcceptEventArgs>;
var onAcceptError: Event<AcceptErrorEventArgs>;
}
}