2023-07-06 07:36:26 +09:00
|
|
|
import Entity from './entity'
|
|
|
|
|
|
|
|
namespace NotificationType {
|
|
|
|
export const Follow: Entity.NotificationType = 'follow'
|
|
|
|
export const Favourite: Entity.NotificationType = 'favourite'
|
|
|
|
export const Reblog: Entity.NotificationType = 'reblog'
|
|
|
|
export const Mention: Entity.NotificationType = 'mention'
|
|
|
|
export const EmojiReaction: Entity.NotificationType = 'emoji_reaction'
|
|
|
|
export const FollowRequest: Entity.NotificationType = 'follow_request'
|
|
|
|
export const Status: Entity.NotificationType = 'status'
|
2023-07-10 04:27:09 +09:00
|
|
|
export const Poll: Entity.NotificationType = 'poll'
|
2023-07-06 07:36:26 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NotificationType
|