mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 05:20:24 +08:00
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:
4
chrome/chrome-app.d.ts
vendored
4
chrome/chrome-app.d.ts
vendored
@@ -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>;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user