You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

shouldShowDeepLinkingDesktopPage.js 243B

123456789
  1. /**
  2. * Resolves with <tt>true</tt> if the deep linking page should be shown and with
  3. * <tt>false</tt> otherwise.
  4. *
  5. * @returns {Promise<boolean>}
  6. */
  7. export function _shouldShowDeepLinkingDesktopPage() {
  8. return Promise.resolve(false);
  9. }