Files
standardnotes-app-web/packages/releases/src/index.ts
2022-06-23 14:42:11 -05:00

25 lines
531 B
TypeScript

export type Platform =
| 'LinuxAmd64Snap'
| 'LinuxAmd64Deb'
| 'LinuxArm64AppImage'
| 'LinuxArm64Deb'
| 'LinuxI386AppImage'
| 'LinuxI386Deb'
| 'LinuxX86_64AppImage'
| 'MacArm64Dmg'
| 'MacArm64Zip'
| 'MacX64Dmg'
| 'MacX64Zip'
| 'WinIa32Exe'
| 'WinX64Exe'
| 'WinExe'
export type Package =
| '@standardnotes/mobile'
| '@standardnotes/desktop'
| '@standardnotes/components-meta'
| '@standardnotes/web'
export type Versions = Record<Package, string>
export type Downloads = Record<Platform, string>