lemmy-js-client
    Preparing search index...

    Type Alias UnreadCountsResponse

    Contains the amount of unread items of various types. For normal users this means the number of unread notifications, mods and admins get additional unread counts for reports, registration applications and pending follows to private communities.

    type UnreadCountsResponse = {
        notification_count: number;
        pending_follow_count?: number;
        registration_application_count?: number;
        report_count?: number;
    }
    Index

    Properties

    notification_count: number
    pending_follow_count?: number
    registration_application_count?: number
    report_count?: number