2020-06-01 17:42:38 -07:00
|
|
|
export interface ITweet {
|
|
|
|
display_coordinates?: boolean;
|
|
|
|
lat?: number;
|
|
|
|
long?: number;
|
|
|
|
media_ids?: string;
|
|
|
|
possibly_sensitive?: boolean;
|
|
|
|
status: string;
|
2020-09-17 14:02:23 -07:00
|
|
|
in_reply_to_status_id?: string;
|
2020-06-01 17:42:38 -07:00
|
|
|
}
|