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

actions.native.ts 278B

1234567891011
  1. /**
  2. * Shows a dialog prompting users to upgrade, if requested feature is disabled.
  3. *
  4. * @param {string} _feature - Used on web.
  5. * @returns {Function}
  6. */
  7. export function maybeShowPremiumFeatureDialog(_feature: string) {
  8. return function() {
  9. return false;
  10. };
  11. }