style: format code

This commit is contained in:
LuanRT
2022-07-21 03:51:28 -03:00
parent 4bf4639902
commit 60e6326402
269 changed files with 2082 additions and 992 deletions

View File

@@ -1,14 +1,15 @@
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;
export default ChannelFeaturedContent;