mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-13 12:54:52 +00:00
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
|