mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-03-14 15:40:17 +00:00
11 lines
335 B
TypeScript
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);
|
|
}
|