mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 18:17:47 +00:00
10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
|
|
/**
|
||
|
|
* Resolves with <tt>true</tt> if the deep linking page should be shown and with
|
||
|
|
* <tt>false</tt> otherwise.
|
||
|
|
*
|
||
|
|
* @returns {Promise<boolean>}
|
||
|
|
*/
|
||
|
|
export function _shouldShowDeepLinkingDesktopPage() {
|
||
|
|
return Promise.resolve(false);
|
||
|
|
}
|