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;