SiteTrend is an interface representing the site trend. It includes the date, count, and change each having their own properties.

interface SiteTrend {
    change: number;
    count: number;
    date: number;
}

Properties

Properties

change: number

change is a number representing the change of the trend.

count: number

count is a number representing the count of the trend.

date: number

date is a number representing the date of the trend.