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