lemmy-js-client
    Preparing search index...

    Type Alias NotificationData

    NotificationData:
        | { type_: "comment" } & CommentView
        | { type_: "post" } & PostView
        | { type_: "private_message" } & PrivateMessageView
        | { type_: "admin_add" } & AdminAdd
        | { type_: "mod_add_to_community" } & ModAddToCommunity
        | { type_: "admin_ban" } & AdminBan
        | { type_: "mod_ban_from_community" } & ModBanFromCommunity
        | { type_: "mod_lock_post" } & ModLockPost
        | { type_: "mod_lock_comment" } & ModLockComment
        | { type_: "mod_remove_post" } & ModRemovePost
        | { type_: "mod_remove_comment" } & ModRemoveComment
        | { type_: "admin_remove_community" } & AdminRemoveCommunity
        | { type_: "mod_transfer_community" } & ModTransferCommunity