Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
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);
- }
|