import type LANGUAGES_LIST from "../../Utils/ISO-369-1"; import type { Tpagination } from "./Global"; declare type streamInfo = { "id": string; "user_id": string; "user_login": string; "user_name": string; "game_id": string; "game_name": string; "type": "live" | ""; "title": string; "viewer_count": number; "started_at": string; "language": string; "thumbnail_url": string; "tag_ids": Array; "is_mature": boolean; }; export declare type streamInfoParameters = { after?: string; before?: string; /** * @max 100 * @default 20 */ first?: number; /** * @max 100 */ game_id?: Array; /** * @max 100 */ language?: Array; /** * @max 100 */ user_id?: Array; /** * @max 100 */ user_login?: Array; }; export declare type JSONstreamKey = { data: Array<{ stream_key: string; }>; }; export declare type JSONstreamInfo = { data: Array; pagination: Tpagination; }; export {};