masto
    Preparing search index...

    Interface FeaturedTag

    Represents a hashtag that is featured on a profile.

    interface FeaturedTag {
        id: string;
        lastStatusAt?: string | null;
        name: string;
        statusesCount: number;
    }
    Index

    Properties

    id: string

    The internal ID of the featured tag in the database.

    lastStatusAt?: string | null

    The timestamp of the last authored status containing this hashtag.

    name: string

    The name of the hashtag being featured.

    statusesCount: number

    The number of authored statuses containing this hashtag