2023-07-17 00:32:32 +02:00
|
|
|
import Entity from "./entity";
|
2023-07-06 00:36:26 +02:00
|
|
|
|
|
|
|
namespace NotificationType {
|
2023-07-17 00:32:32 +02:00
|
|
|
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";
|
2023-07-06 00:36:26 +02:00
|
|
|
}
|
|
|
|
|
2023-07-17 00:32:32 +02:00
|
|
|
export default NotificationType;
|