From 065b1c400f1847b4cae5acf771cd65b6e1cc5956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6k=C3=A7e=20Merdun?= Date: Tue, 15 Aug 2023 01:58:02 +0300 Subject: [PATCH] fix(window): correct typo in OsType --- plugins/os/guest-js/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/os/guest-js/index.ts b/plugins/os/guest-js/index.ts index 02803361..25b56063 100644 --- a/plugins/os/guest-js/index.ts +++ b/plugins/os/guest-js/index.ts @@ -29,7 +29,7 @@ type Platform = | "android" | "windows"; -type OsType = "linux" | "windows" | "macss" | "ios" | "android"; +type OsType = "linux" | "windows" | "macos" | "ios" | "android"; type Arch = | "x86"