export interface TwitchAuthResponse {
    access_token: string;
    expires_in: number;
    token_type: "bearer";
}
