* @fileoverview Externs generated from namespace: arcAppsPrivate
* @externs
*/
chrome.arcAppsPrivate = {};
* @typedef {{
* packageName: string
* }}
*/
chrome.arcAppsPrivate.AppInfo;
* Returns info of the installed ARC apps that are launchable, including ready
* and non-ready apps.
* @param {function(!Array<!chrome.arcAppsPrivate.AppInfo>): void} callback
*/
chrome.arcAppsPrivate.getLaunchableApps = function(callback) {};
* Launches the ARC app with its package name. The app is launched immediately
* if it's ready, otherwise it will be launched when it becomes ready. The
* callback is called as soon as the launch is scheduled.
* @param {string} packageName
* @param {function(): void=} callback
*/
chrome.arcAppsPrivate.launchApp = function(packageName, callback) {};
* Fires when a new app can be launched via $(ref:launchApp).
* @type {!ChromeEvent}
*/
chrome.arcAppsPrivate.onInstalled;