mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
|
|
export enum ErrorCode {
|
|
IsReadOnly = 'isReadOnly',
|
|
NotFound = 'notFound',
|
|
UnsupportedMimeType = 'unsupportedMimeType',
|
|
MustUpgradeApp = 'mustUpgradeApp',
|
|
}
|