@playlive/twitch-shared
    Preparing search index...

    Interface TwitchStream

    A live Twitch stream as returned by Helix GET /helix/streams?user_id=….

    interface TwitchStream {
        game_id: string;
        game_name: string;
        id: string;
        is_mature: boolean;
        language: string;
        started_at: string;
        tag_ids: string[];
        tags: string[];
        thumbnail_url: string;
        title: string;
        type: string;
        user_id: string;
        user_login: string;
        user_name: string;
        viewer_count: number;
    }
    Index
    game_id: string
    game_name: string
    id: string
    is_mature: boolean
    language: string
    started_at: string
    tag_ids: string[]
    tags: string[]
    thumbnail_url: string
    title: string
    type: string
    user_id: string
    user_login: string
    user_name: string
    viewer_count: number