mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-16 07:37:48 +01:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { type } from '@tauri-apps/plugin-os';
|
|
|
|
const os = type();
|
|
export const revealInFinderText =
|
|
os === 'macos'
|
|
? 'Reveal in Finder'
|
|
: os === 'windows'
|
|
? 'Show in Explorer'
|
|
: 'Show in File Manager';
|