twitch-drops-watcher
Version:
Script to periodically scan for Twitch Drops for a given game.
33 lines (32 loc) • 627 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TwitchStream = exports.TwitchGame = exports.TwitchCredentials = void 0;
class TwitchCredentials {
access_token;
expires_in;
token_type;
}
exports.TwitchCredentials = TwitchCredentials;
class TwitchGame {
box_art_url;
id;
name;
}
exports.TwitchGame = TwitchGame;
class TwitchStream {
id;
user_id;
user_login;
user_name;
game_id;
game_name;
type;
title;
viewer_count;
started_at;
language;
thumbnail_url;
tag_ids;
is_mature;
}
exports.TwitchStream = TwitchStream;