Fixed bug

This commit is contained in:
Christopher
2026-01-22 13:56:15 -08:00
parent 825c026743
commit cc302c73d4
+7
View File
@@ -3,6 +3,13 @@ export interface User {
handle: string; handle: string;
displayName: string; displayName: string;
avatarUrl?: string | null; avatarUrl?: string | null;
bio?: string | null;
headerUrl?: string | null;
followersCount?: number;
followingCount?: number;
postsCount?: number;
createdAt?: string;
movedTo?: string | null;
} }
export interface MediaItem { export interface MediaItem {