mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-26 08:08:54 +00:00
chore: clean up build steps
This commit is contained in:
14
src/parser/classes/ChannelFeaturedContent.js
Normal file
14
src/parser/classes/ChannelFeaturedContent.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import Parser from '../index';
|
||||
import Text from './misc/Text';
|
||||
|
||||
import { YTNode } from '../helpers';
|
||||
|
||||
class ChannelFeaturedContent extends YTNode {
|
||||
static type = 'ChannelFeaturedContent';
|
||||
constructor(data) {
|
||||
super();
|
||||
this.title = new Text(data.title);
|
||||
this.items = Parser.parse(data.items);
|
||||
}
|
||||
}
|
||||
export default ChannelFeaturedContent;
|
||||
Reference in New Issue
Block a user