mirror of
https://github.com/ILoveBingLu/CipherTalk.git
synced 2026-05-21 03:50:35 +08:00
11 lines
442 B
TypeScript
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()
|