CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface RecentCommenter

    Profile preview of a user who recently participated in a feature request discussion.

    const commenter: RecentCommenter = {
    authorName: 'Sarah Connor',
    avatarUrl: 'https://images.example.com/avatar.jpg',
    };
    interface RecentCommenter {
        authorName?: string | null;
        avatarUrl?: string | null;
        clerkUserId?: string | null;
    }
    Index
    authorName?: string | null

    Display name of the commenter.

    avatarUrl?: string | null

    Direct URL to commenter's avatar image.

    clerkUserId?: string | null

    Clerk user ID of the commenter if authenticated.