1
0
Fork 1
mirror of https://example.com synced 2024-11-28 15:36:39 +09:00
firefish/packages/megalodon/src/notification.ts

15 lines
593 B
TypeScript
Raw Normal View History

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'
export const Poll: Entity.NotificationType = 'poll'
}
export default NotificationType