Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

openDesktopApp.js 381B

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