Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Jul 6, 2022
1 parent 425dcb9 commit 566be42
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tooling/api/src/os.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
import { isWindows } from './helpers/os-check'
import { invokeTauriCommand } from './helpers/tauri'

type Platform = 'linux'
type Platform =
| 'linux'
| 'darwin'
| 'ios'
| 'freebsd'
Expand All @@ -39,7 +40,8 @@ type Platform = 'linux'

type OsType = 'Linux' | 'Darwin' | 'Windows_NT'

type Arch = 'x86'
type Arch =
| 'x86'
| 'x86_64'
| 'arm'
| 'aarch64'
Expand Down

0 comments on commit 566be42

Please sign in to comment.