Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
123456789 |
- /**
- * 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);
- }
|