diff options
author | Leon Jiang <35908040+leonyjiang@users.noreply.github.com> | 2021-03-08 03:20:02 -0500 |
---|---|---|
committer | Leon Jiang <35908040+leonyjiang@users.noreply.github.com> | 2021-03-08 03:20:02 -0500 |
commit | 9c101786697df2c3fe79a2d9186a7f79530b7283 (patch) | |
tree | 0028f433320f71f87c8392e6f4197727f94e8b0c /src | |
parent | 3489cb3cf0adc8593fe4f64e0fccb2b6e4228ef5 (diff) |
Create CategoryPreviewType
Diffstat (limited to 'src')
-rw-r--r-- | src/types/types.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/types/types.ts b/src/types/types.ts index 186cb4d5..7839e3f5 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -14,6 +14,11 @@ export interface ProfilePreviewType { thumbnail_url: string; } +export interface CategoryPreviewType { + name: string; + category: string; +} + export type FriendshipStatusType = 'friends' | 'requested' | 'no_record'; export interface ProfileType { |