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