Type Alias GuildSingleStreamerWithFormatedRole<T>

GuildSingleStreamerWithFormatedRole<T>: T extends "kick"
    ? KickStreamer & UsersForLiveRole
    : T extends "twitch"
        ? TwitchStreamer & UsersForLiveRole
        : T extends "rumble"
            ? RumbleStreamer & UsersForLiveRole
            : T extends "tiktok"
                ? TikTokStreamer & UsersForLiveRole
                : T extends "youtube"
                    ? YouTubeStreamerZod & UsersForLiveRole
                    : T extends "club"
                        ? ClubStreamer & UsersForLiveRole
                        : T extends "whatnot"
                            ? WhatnotStreamer & UsersForLiveRole
                            : T extends "twitter"
                                ? TwitterStreamer & UsersForLiveRole
                                : never

Type Parameters