UNPKG

twitter-api-client

Version:
18 lines (17 loc) 334 B
export default interface TrendsPlace { trends: Trend[]; as_of: string; created_at: string; locations: Location[]; } export interface Location { name: string; woeid: number; } export interface Trend { name: string; url: string; promoted_content?: any; query: string; tweet_volume: number; }