9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
export type TransportEnvironment = "tauri" | "web"
|
|
|
|
export function detectEnvironment(): TransportEnvironment {
|
|
if (typeof window !== "undefined" && "__TAURI_INTERNALS__" in window) {
|
|
return "tauri"
|
|
}
|
|
return "web"
|
|
}
|