mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 14:06:49 +01:00
6 lines
108 B
TypeScript
6 lines
108 B
TypeScript
import { type } from '@tauri-apps/plugin-os';
|
|
|
|
export function useOsInfo() {
|
|
return { osType: type() };
|
|
}
|