mirror of
https://github.com/TheNetsky/Microsoft-Rewards-Script.git
synced 2026-01-11 10:56:17 +00:00
45 lines
814 B
TypeScript
45 lines
814 B
TypeScript
export interface GoogleTrends {
|
|
default: Default;
|
|
}
|
|
|
|
export interface Default {
|
|
trendingSearchesDays: TrendingSearchesDay[];
|
|
endDateForNextRequest: string;
|
|
rssFeedPageUrl: string;
|
|
}
|
|
|
|
export interface TrendingSearchesDay {
|
|
date: string;
|
|
formattedDate: string;
|
|
trendingSearches: TrendingSearch[];
|
|
}
|
|
|
|
export interface TrendingSearch {
|
|
title: Title;
|
|
formattedTraffic: string;
|
|
relatedQueries: Title[];
|
|
image: Image;
|
|
articles: Article[];
|
|
shareUrl: string;
|
|
}
|
|
|
|
export interface Article {
|
|
title: string;
|
|
timeAgo: string;
|
|
source: string;
|
|
image?: Image;
|
|
url: string;
|
|
snippet: string;
|
|
}
|
|
|
|
export interface Image {
|
|
newsUrl: string;
|
|
source: string;
|
|
imageUrl: string;
|
|
}
|
|
|
|
export interface Title {
|
|
query: string;
|
|
exploreLink: string;
|
|
}
|