3fd2b55406
This reverts commit 89eea5df52
.
17 lines
821 B
TypeScript
17 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
|