You've already forked joplin
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:
14
packages/lib/types.ts
Normal file
14
packages/lib/types.ts
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user