1
0

add: Megalodon, initial mastodon api

This commit is contained in:
Mar0xy
2023-09-23 18:49:47 +02:00
parent 240d76a987
commit 2375d043d1
103 changed files with 9492 additions and 82 deletions
+14
View File
@@ -0,0 +1,14 @@
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;