mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-14 16:46:22 +08:00
23 lines
447 B
TypeScript
23 lines
447 B
TypeScript
export const MESSAGE_INFO = {
|
|
UPLOAD: {
|
|
SUCCESS: '',
|
|
FAILURE: 'Failed to upload file',
|
|
},
|
|
DOWNLOAD: {
|
|
SUCCESS: '',
|
|
FAILURE: 'Failed to download file',
|
|
},
|
|
GET: {
|
|
SUCCESS: '',
|
|
FAILURE: 'Failed to get object',
|
|
},
|
|
DELETE: {
|
|
SUCCESS: '',
|
|
FAILURE: 'Failed to delete file',
|
|
},
|
|
NO_AUTH: {
|
|
SUCCESS: '',
|
|
FAILURE: 'Failed to auth',
|
|
},
|
|
};
|