UNPKG

node-ttv

Version:

A Node.js wrapper for Twitch.tv's helix API.

18 lines (17 loc) 511 B
import OAuth from "./authentication/OAuth"; import Scopes from "./authentication/Scopes"; import Helix from "./helix/Helix"; /** * Your registered Twitch application. */ export default class Twitch { helix: Helix; oauth: OAuth; /** * Handle a registered Twitch application * @param CLIENT_ID Your registered application's client id * @param SECRET Your registered application's secret */ constructor(CLIENT_ID: string, SECRET: string); } export { Twitch, OAuth, Scopes };