@tixyel/streamelements 7.0.2 → 7.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -1
- package/dist/index.es.js +241 -166
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3270,11 +3270,15 @@ interface FakeUserPoolOptions {
|
|
|
3270
3270
|
id?: string;
|
|
3271
3271
|
names?: string[];
|
|
3272
3272
|
badges?: Twitch.tags[];
|
|
3273
|
+
minimumBadgesPerUser?: number;
|
|
3273
3274
|
limits?: {
|
|
3274
3275
|
[key in Twitch.tags]?: number;
|
|
3275
3276
|
};
|
|
3276
3277
|
fixed?: {
|
|
3277
|
-
[key in Twitch.tags]?: string[];
|
|
3278
|
+
[key in Twitch.tags]?: string | string[];
|
|
3279
|
+
};
|
|
3280
|
+
incompatible?: {
|
|
3281
|
+
[key in Twitch.tags]?: Twitch.tags | Twitch.tags[];
|
|
3278
3282
|
};
|
|
3279
3283
|
}
|
|
3280
3284
|
type FakeUserPoolEvents = {
|