mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
refactor(Parser)!: general refactoring of parsers (#344)
* refactor: move common info into MediaInfo * refactor: better inference on Memo * refactor: improved typesafety in parser methods * refactor: remove PlaylistAuthor in favor of Author * refactor: cleanup live chat parsers - Replace non standard author type with Author class - Remove redundant code * fix: new errors due to changes * fix: pass actions to FormatUtils#toDash * refactor!: merge NavigatableText and Text into single class
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import Text from './misc/Text.js';
|
||||
import Parser from '../index.js';
|
||||
import Thumbnail from './misc/Thumbnail.js';
|
||||
import type Button from './Button.js';
|
||||
import Button from './Button.js';
|
||||
import { YTNode } from '../helpers.js';
|
||||
|
||||
class LiveChatMessageInput extends YTNode {
|
||||
@@ -16,7 +16,7 @@ class LiveChatMessageInput extends YTNode {
|
||||
super();
|
||||
this.author_name = new Text(data.authorName);
|
||||
this.author_photo = Thumbnail.fromResponse(data.authorPhoto);
|
||||
this.send_button = Parser.parseItem<Button>(data.sendButton);
|
||||
this.send_button = Parser.parseItem(data.sendButton, Button);
|
||||
this.target_id = data.targetId;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user