mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
4d8fcff6d5
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
16 lines
196 B
TypeScript
16 lines
196 B
TypeScript
export enum ApplicationPlatform {
|
|
Unknown = 0,
|
|
Windows = 1,
|
|
Linux = 2,
|
|
MacOs = 3,
|
|
Android = 4,
|
|
Ios = 5,
|
|
}
|
|
|
|
export enum ApplicationType {
|
|
Unknown = 0,
|
|
Desktop = 1,
|
|
Mobile = 2,
|
|
Cli = 3,
|
|
}
|