Member Junction
    Preparing search index...
    interface Tweet {
        attachments?: { media_keys?: string[]; poll_ids?: string[] };
        author_id?: string;
        conversation_id?: string;
        created_at: string;
        entities?: {
            hashtags?: { end: number; start: number; tag: string }[];
            mentions?: { end: number; start: number; username: string }[];
            urls?: { end: number; expanded_url: string; start: number; url: string }[];
        };
        id: string;
        public_metrics?: {
            bookmark_count: number;
            impression_count: number;
            like_count: number;
            quote_count: number;
            reply_count: number;
            retweet_count: number;
        };
        referenced_tweets?: {
            id: string;
            type: "retweeted"
            | "quoted"
            | "replied_to";
        }[];
        text: string;
    }
    Index

    Properties

    attachments?: { media_keys?: string[]; poll_ids?: string[] }
    author_id?: string
    conversation_id?: string
    created_at: string
    entities?: {
        hashtags?: { end: number; start: number; tag: string }[];
        mentions?: { end: number; start: number; username: string }[];
        urls?: { end: number; expanded_url: string; start: number; url: string }[];
    }
    id: string
    public_metrics?: {
        bookmark_count: number;
        impression_count: number;
        like_count: number;
        quote_count: number;
        reply_count: number;
        retweet_count: number;
    }
    referenced_tweets?: { id: string; type: "retweeted" | "quoted" | "replied_to" }[]
    text: string