jiti-meet/react/features/deep-linking/openDesktopApp.js

13 lines
381 B
JavaScript
Raw Normal View History

// @flow
/**
* Opens the desktop app.
*
* @param {Object} state - Object containing current redux state.
* @returns {Promise<boolean>} - Resolves with true if the attempt to open the desktop app was successful and resolves
* with false otherwise.
*/
export function _openDesktopApp(state: Object) { // eslint-disable-line no-unused-vars
return Promise.resolve(false);
}