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

openDesktopApp.ts 335B

12345678910
  1. /**
  2. * Opens the desktop app.
  3. *
  4. * @param {Object} _state - Object containing current redux state.
  5. * @returns {Promise<boolean>} - Resolves with true if the attempt to open the desktop app was successful and resolves
  6. * with false otherwise.
  7. */
  8. export function _openDesktopApp(_state: Object) {
  9. return Promise.resolve(false);
  10. }