twitch-getter
Advanced tools
Comparing version 1.1.5 to 1.1.6
import NewTwitchAPI from "./new_twitch_api/new_twitch_api"; | ||
import V5TwitchAPI from "./v5_twitch_api/v5"; | ||
export { NewTwitchAPI, V5TwitchAPI }; | ||
import * as V5Types from "./v5_twitch_api/v5_types"; | ||
import * as NewTypes from "./new_twitch_api/new_twitch_types"; | ||
export { NewTwitchAPI, V5TwitchAPI, V5Types, NewTypes }; |
@@ -7,1 +7,5 @@ "use strict"; | ||
exports.V5TwitchAPI = v5_1.default; | ||
var V5Types = require("./v5_twitch_api/v5_types"); | ||
exports.V5Types = V5Types; | ||
var NewTypes = require("./new_twitch_api/new_twitch_types"); | ||
exports.NewTypes = NewTypes; |
@@ -66,2 +66,15 @@ export interface StreamData { | ||
} | ||
export declare type V5StreamsConfig = { | ||
[key: string]: any; | ||
channel?: string; | ||
game?: string; | ||
language?: string; | ||
stream_type?: string; | ||
limit?: number; | ||
offset?: number; | ||
}; | ||
export declare type V5TopGames = { | ||
limit?: number; | ||
offset?: number; | ||
}; | ||
export {}; |
import { V5StreamersPayload, TopGames } from "./v5_types"; | ||
declare type V5StreamsConfig = { | ||
[key: string]: any; | ||
channel?: string; | ||
game?: string; | ||
language?: string; | ||
stream_type?: string; | ||
limit?: number; | ||
offset?: number; | ||
}; | ||
declare type V5TopGames = { | ||
limit?: number; | ||
offset?: number; | ||
}; | ||
import { V5StreamsConfig, V5TopGames } from "./v5_types"; | ||
export default class V5TwitchAPI { | ||
@@ -22,2 +10,1 @@ private helpers; | ||
} | ||
export {}; |
{ | ||
"name": "twitch-getter", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "Get data from twitch's own API", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25797
553