您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
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);
- }
|