Web: Common: Constants: Added FileAction constant

This commit is contained in:
Ilya Oleshko 2020-03-18 11:39:43 +03:00
parent 9502dcda11
commit cb9a587f7a

View File

@ -64,3 +64,12 @@ export const FileType = Object.freeze({
Presentation: 6,
Document: 7
});
/**
* Enum for file action.
* @readonly
*/
export const FileAction = Object.freeze({
Create: 0,
Rename: 1
});