twitter-api-client
Version:
Node.js / JavaScript client for Twitter API
13 lines (11 loc) • 362 B
TypeScript
export interface TrendsPlaceParams {
/**
* The Yahoo! Where On Earth ID of the location to return trending
information for. Global information is available by using 1 as the WOEID.
*/
'id': string | number;
/**
* Setting this equal to hashtags will remove all hashtags from the trends list.
*/
'exclude'?: string | number;
}