twitter-api-client
Version:
Node.js / JavaScript client for Twitter API
19 lines (16 loc) • 631 B
TypeScript
export interface TrendsClosestParams {
/**
* If provided with a long parameter the available trend locations
will be sorted by distance, nearest to furthest, to the co-ordinate pair.
The valid ranges for longitude is -180.0 to +180.0 (West is negative, East
is positive) inclusive.
*/
'lat': string | number;
/**
* If provided with a lat parameter the available trend locations
will be sorted by distance, nearest to furthest, to the co-ordinate pair.
The valid ranges for longitude is -180.0 to +180.0 (West is negative, East
is positive) inclusive.
*/
'long': string | number;
}