diff options
author | Ivan Chen <ivan@tagg.id> | 2021-01-26 18:09:42 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-01-26 18:09:42 -0500 |
commit | 02722456c7314d8d39ac314c2360f6f4f20e327f (patch) | |
tree | 3f664bfffbecfc3d9a47c5b5ffa7bb4a9d6f55e5 /src | |
parent | 0570f1fa41bc9d41303ade2cf54592a4670cb87b (diff) |
added thumbnail types
Diffstat (limited to 'src')
-rw-r--r-- | src/types/types.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types/types.ts b/src/types/types.ts index d9d0b56b..9b9fb627 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -11,6 +11,7 @@ export interface ProfilePreviewType { username: string; first_name: string; last_name: string; + thumbnail_url: string; } export type FriendshipStatusType = 'friends' | 'requested' | 'no_record'; @@ -84,6 +85,7 @@ export interface MomentType { date_created: string; moment_category: string; path_hash: string; + thumbnail_url: string; } export interface CommentType { |