fix(releases): types (#1142)

This commit is contained in:
Mo
2022-06-23 14:42:11 -05:00
committed by GitHub
parent cb128e5de1
commit 9789fc2000

View File

@@ -1,19 +1,18 @@
export enum Platform {
LinuxAmd64Snap,
LinuxAmd64Deb,
LinuxArm64AppImage,
LinuxArm64Deb,
LinuxI386AppImage,
LinuxI386Deb,
LinuxX86_64AppImage,
MacArm64Dmg,
MacArm64Zip,
MacX64Dmg,
MacX64Zip,
WinIa32Exe,
WinX64Exe,
WinExe,
}
export type Platform =
| 'LinuxAmd64Snap'
| 'LinuxAmd64Deb'
| 'LinuxArm64AppImage'
| 'LinuxArm64Deb'
| 'LinuxI386AppImage'
| 'LinuxI386Deb'
| 'LinuxX86_64AppImage'
| 'MacArm64Dmg'
| 'MacArm64Zip'
| 'MacX64Dmg'
| 'MacX64Zip'
| 'WinIa32Exe'
| 'WinX64Exe'
| 'WinExe'
export type Package =
| '@standardnotes/mobile'