mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-03 14:33:09 +02:00
3fd2b55406
This reverts commit 89eea5df52
.
16 lines
821 B
TypeScript
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
|