Files
yaak-mountain-loop/apps/yaak-client/lib/reveal.ts
2026-05-07 15:50:10 -07:00

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";