Interface ITweetEntities

The different types parsed entities like urls, media, mentions, hashtags, etc.

interface ITweetEntities {
    hashtags: string[];
    mentionedUsers: string[];
    urls: string[];
}

Properties

hashtags: string[]

The list of hashtags mentioned in the tweet.

mentionedUsers: string[]

The list of IDs of users mentioned in the tweet.

urls: string[]

The list of urls mentioned in the tweet.