6 lines
91 B
TypeScript
Raw Normal View History

export function getPlatform() {
return {
isTauri: import.meta.env.TAURI_MODE,
};
}