Files
CipherTalk/electron/services/shortcutService.darwin.ts
T
2026-04-06 21:31:29 +08:00

11 lines
442 B
TypeScript

import type { ShortcutService, ShortcutUpdateResult } from './shortcutService'
class DarwinShortcutService implements ShortcutService {
async updateDesktopShortcutIcon(_iconPath: string): Promise<ShortcutUpdateResult> {
// macOS 没有与 Windows .lnk 对应的统一桌面快捷方式图标更新入口,这里保持成功返回即可。
return { success: true }
}
}
export const shortcutService = new DarwinShortcutService()