Sharkey/packages/megalodon/src/mastodon/notification.ts
2023-09-25 01:49:57 +02:00

16 lines
821 B
TypeScript

import MastodonEntity from './entity'
namespace MastodonNotificationType {
export const Mention: MastodonEntity.NotificationType = 'mention'
export const Reblog: MastodonEntity.NotificationType = 'reblog'
export const Favourite: MastodonEntity.NotificationType = 'favourite'
export const Follow: MastodonEntity.NotificationType = 'follow'
export const Poll: MastodonEntity.NotificationType = 'poll'
export const FollowRequest: MastodonEntity.NotificationType = 'follow_request'
export const Status: MastodonEntity.NotificationType = 'status'
export const Update: MastodonEntity.NotificationType = 'update'
export const AdminSignup: MastodonEntity.NotificationType = 'admin.sign_up'
export const AdminReport: MastodonEntity.NotificationType = 'admin.report'
}
export default MastodonNotificationType