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 { export type Platform =
LinuxAmd64Snap, | 'LinuxAmd64Snap'
LinuxAmd64Deb, | 'LinuxAmd64Deb'
LinuxArm64AppImage, | 'LinuxArm64AppImage'
LinuxArm64Deb, | 'LinuxArm64Deb'
LinuxI386AppImage, | 'LinuxI386AppImage'
LinuxI386Deb, | 'LinuxI386Deb'
LinuxX86_64AppImage, | 'LinuxX86_64AppImage'
MacArm64Dmg, | 'MacArm64Dmg'
MacArm64Zip, | 'MacArm64Zip'
MacX64Dmg, | 'MacX64Dmg'
MacX64Zip, | 'MacX64Zip'
WinIa32Exe, | 'WinIa32Exe'
WinX64Exe, | 'WinX64Exe'
WinExe, | 'WinExe'
}
export type Package = export type Package =
| '@standardnotes/mobile' | '@standardnotes/mobile'