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.

openDesktopApp.js 254B

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