chore: fix a few inconsistencies

This commit is contained in:
LuanRT
2022-11-30 19:02:49 -03:00
parent be157ef016
commit 49d1432b5a
22 changed files with 91 additions and 49 deletions

View File

@@ -3,7 +3,7 @@ import NavigationEndpoint from './NavigationEndpoint';
import Text from './misc/Text';
import { YTNode } from '../helpers';
export default class WatchCardRichHeader extends YTNode {
class WatchCardRichHeader extends YTNode {
static type = 'WatchCardRichHeader';
title: Text;
@@ -21,4 +21,6 @@ export default class WatchCardRichHeader extends YTNode {
this.author.name = this.title.toString();
this.style = data.style;
}
}
}
export default WatchCardRichHeader;