forked from naskya/firefish
14 lines
584 B
TypeScript
14 lines
584 B
TypeScript
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 Reaction: Entity.NotificationType = "reaction";
|
|
export const FollowRequest: Entity.NotificationType = "follow_request";
|
|
export const Status: Entity.NotificationType = "status";
|
|
export const Poll: Entity.NotificationType = "poll";
|
|
}
|
|
|
|
export default NotificationType;
|