megalodon
Version:
Fediverse API client for node.js and browser
17 lines (16 loc) • 804 B
JavaScript
var MastodonNotificationType;
(function (MastodonNotificationType) {
MastodonNotificationType.Mention = 'mention';
MastodonNotificationType.Reblog = 'reblog';
MastodonNotificationType.Favourite = 'favourite';
MastodonNotificationType.Follow = 'follow';
MastodonNotificationType.Poll = 'poll';
MastodonNotificationType.FollowRequest = 'follow_request';
MastodonNotificationType.Status = 'status';
MastodonNotificationType.Update = 'update';
MastodonNotificationType.AdminSignup = 'admin.sign_up';
MastodonNotificationType.AdminReport = 'admin.report';
MastodonNotificationType.Quote = 'quote';
MastodonNotificationType.QuotedUpdate = 'quoted_update';
})(MastodonNotificationType || (MastodonNotificationType = {}));
export default MastodonNotificationType;