Make ComposeType numeric

This commit is contained in:
the-djmaze 2022-03-08 09:27:32 +01:00
parent cb3b9d6921
commit 4b8e77be5c
2 changed files with 10 additions and 10 deletions

View file

@ -48,13 +48,13 @@ export const FolderSortMode = {
* @enum {string}
*/
export const ComposeType = {
Empty: 'empty',
Reply: 'reply',
ReplyAll: 'replyall',
Forward: 'forward',
ForwardAsAttachment: 'forward-as-attachment',
Draft: 'draft',
EditAsNew: 'editasnew'
Empty: 0,
Reply: 1,
ReplyAll: 2,
Forward: 3,
ForwardAsAttachment: 4,
Draft: 5,
EditAsNew: 6
};
/**