From fcc47649f609e3ff6395e7045035249c76c9bcb3 Mon Sep 17 00:00:00 2001 From: Wazbat Date: Wed, 19 Apr 2023 15:05:58 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20Split=20user=20into=20c?= =?UTF-8?q?ommon=20shared=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/types.d.ts | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/types/types.d.ts b/src/types/types.d.ts index 45666de..f4fc0a2 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -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;