mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-11 18:42:29 +00:00
10 lines
254 B
JavaScript
10 lines
254 B
JavaScript
/**
|
|
* Opens the desktop app.
|
|
*
|
|
* @returns {Promise<boolean>} - Resolves with true if the attempt to open the desktop app was successful and resolves
|
|
* with false otherwise.
|
|
*/
|
|
export function _openDesktopApp() {
|
|
return Promise.resolve(false);
|
|
}
|