1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Chore: Add enums for ApplicationPlatform and ApplicationType (#9410)

This commit is contained in:
pedr
2023-11-29 12:31:49 -03:00
committed by GitHub
parent afd653ba4d
commit fd4f70f62b
3 changed files with 16 additions and 0 deletions

14
packages/lib/types.ts Normal file
View File

@@ -0,0 +1,14 @@
export enum ApplicationPlatform {
Unknown = 0,
Windows = 1,
Linux = 2,
MacOs = 3,
Android = 4,
}
export enum ApplicationType {
Unknown = 0,
Desktop = 1,
Mobile = 2,
Cli = 3,
}