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.
12345678910 |
- /**
- * Opens the desktop app.
- *
- * @param {Object} _state - Object containing current redux state.
- * @returns {Promise<boolean>} - Resolves with true if the attempt to open the desktop app was successful and resolves
- * with false otherwise.
- */
- export function _openDesktopApp(_state: Object) {
- return Promise.resolve(false);
- }
|