fix(os): correct typo in OsType (#561)

* fix(window): correct typo in OsType

* change file

* fix fmt check
This commit is contained in:
Gökçe Merdun
2023-08-15 03:39:32 +03:00
committed by GitHub
parent d0c0084859
commit e510f2fe4c
3 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -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"