This commit is contained in:
2026-05-15 23:06:44 +03:30
parent 41789ec221
commit 97485b7a67
22 changed files with 1609 additions and 665 deletions

View File

@@ -10,6 +10,9 @@ export type ChannelCard = {
display_name: string;
description: string | null;
thumbnail_path: string | null;
thumbnail_url: string | null;
avatar_url: string | null;
banner_url: string | null;
viewer_count: number;
followers_count: number;
category: Category | null;
@@ -29,6 +32,9 @@ export type ChannelDetail = {
slug: string;
display_name: string;
description: string | null;
avatar_url: string | null;
banner_url: string | null;
thumbnail_url: string | null;
is_live: boolean;
viewer_count: number;
followers_count: number;