您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }