mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
🏷️ Split user into common shared type
This commit is contained in:
parent
4983e1a58e
commit
fcc47649f6
1 changed files with 6 additions and 10 deletions
16
src/types/types.d.ts
vendored
16
src/types/types.d.ts
vendored
|
@ -58,14 +58,15 @@ interface APITranslate {
|
|||
source_lang_en: string;
|
||||
target_lang: string;
|
||||
}
|
||||
|
||||
interface APIAuthor {
|
||||
interface BaseUser {
|
||||
name?: string;
|
||||
screen_name?: string;
|
||||
avatar_url?: string;
|
||||
avatar_color: string;
|
||||
banner_url?: string;
|
||||
}
|
||||
interface APITweetAuthor extends BaseUser {
|
||||
avatar_color: string;
|
||||
}
|
||||
|
||||
interface APIExternalMedia {
|
||||
type: 'video';
|
||||
|
@ -129,7 +130,7 @@ interface APITweet {
|
|||
quote?: APITweet;
|
||||
poll?: APIPoll;
|
||||
translation?: APITranslate;
|
||||
author: APIAuthor;
|
||||
author: APITweetAuthor;
|
||||
|
||||
media?: {
|
||||
external?: APIExternalMedia;
|
||||
|
@ -148,13 +149,8 @@ interface APITweet {
|
|||
twitter_card: 'tweet' | 'summary' | 'summary_large_image' | 'player';
|
||||
}
|
||||
|
||||
interface APIUser {
|
||||
interface APIUser extends BaseUser {
|
||||
id: string;
|
||||
name: string;
|
||||
screen_name: string;
|
||||
avatar_url: string;
|
||||
banner_url: string;
|
||||
avatar_color: string;
|
||||
description: string;
|
||||
location: string;
|
||||
url: string;
|
||||
|
|
Loading…
Add table
Reference in a new issue