mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
15 lines
186 B
TypeScript
15 lines
186 B
TypeScript
export enum ApplicationPlatform {
|
|
Unknown = 0,
|
|
Windows = 1,
|
|
Linux = 2,
|
|
MacOs = 3,
|
|
Android = 4,
|
|
}
|
|
|
|
export enum ApplicationType {
|
|
Unknown = 0,
|
|
Desktop = 1,
|
|
Mobile = 2,
|
|
Cli = 3,
|
|
}
|