lemmy-js-client
    Preparing search index...

    Type Alias PostActions

    type PostActions = {
        hidden_at?: string;
        notifications?: PostNotificationsMode;
        read_at?: string;
        read_comments_amount?: number;
        read_comments_at?: string;
        saved_at?: string;
        vote_is_upvote?: boolean;
        voted_at?: string;
    }
    Index

    Properties

    hidden_at?: string

    When the post was hidden.

    notifications?: PostNotificationsMode
    read_at?: string

    When the post was read.

    read_comments_amount?: number

    The number of comments you read last. Subtract this from total comments to get an unread count.

    read_comments_at?: string

    When was the last time you read the comments.

    saved_at?: string

    When the post was saved.

    vote_is_upvote?: boolean

    True if upvoted, false if downvoted. Upvote is greater than downvote.

    voted_at?: string

    When the post was upvoted or downvoted.