Files
jitsi-meet/react/features/deep-linking/openDesktopApp.ts
2023-04-07 13:59:25 +03:00

11 lines
335 B
TypeScript

/**
* 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) {
return Promise.resolve(false);
}