🏷️ Split user into common shared type

This commit is contained in:
Wazbat 2023-04-19 15:05:58 +02:00
parent 4983e1a58e
commit fcc47649f6

16
src/types/types.d.ts vendored
View file

@ -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;