fix: missing import

This commit is contained in:
Daniel Wykerd
2022-06-16 02:18:34 +02:00
committed by LuanRT
parent 6d7609c32a
commit b594dad510
2 changed files with 2 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ const Channel = require('./parser/youtube/Channel');
const Playlist = require('./parser/youtube/Playlist');
const FilterableFeed = require('./core/FilterableFeed');
const TabbedFeed = require('./core/TabbedFeed');
const { PassThrough } = require('stream');
class Innertube {
#axios;

View File

@@ -2,7 +2,7 @@
const Parser = require('../contents');
const { InnertubeError } = require('../../utils/Utils');
const { Stream, PassThrough } = require('stream');
const { PassThrough } = require('stream');
const Axios = require('axios');
const Constants = require('../../utils/Constants');
const CancelToken = Axios.CancelToken;