mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-23 23:09:28 +00:00
chore: clean up build steps
This commit is contained in:
13
src/parser/classes/actions/AppendContinuationItemsAction.js
Normal file
13
src/parser/classes/actions/AppendContinuationItemsAction.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import Parser from '../../index';
|
||||
|
||||
import { YTNode } from '../../helpers';
|
||||
|
||||
class AppendContinuationItemsAction extends YTNode {
|
||||
static type = 'AppendContinuationItemsAction';
|
||||
constructor(data) {
|
||||
super();
|
||||
this.items = Parser.parse(data.continuationItems);
|
||||
this.target = data.target;
|
||||
}
|
||||
}
|
||||
export default AppendContinuationItemsAction;
|
||||
13
src/parser/classes/actions/OpenPopupAction.js
Normal file
13
src/parser/classes/actions/OpenPopupAction.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import Parser from '../../index';
|
||||
|
||||
import { YTNode } from '../../helpers';
|
||||
|
||||
class OpenPopupAction extends YTNode {
|
||||
static type = 'OpenPopupAction';
|
||||
constructor(data) {
|
||||
super();
|
||||
this.popup = Parser.parse(data.popup);
|
||||
this.popup_type = data.popupType;
|
||||
}
|
||||
}
|
||||
export default OpenPopupAction;
|
||||
Reference in New Issue
Block a user