refactor: improve livechat parser & add remaining action nodes (#285)

* refactor: improve live chat parsers & add missing nodes

* chore: update example and docs

* docs: rephrasing/formatting

* chore: remove unneeded test (unrelated)
This commit is contained in:
LuanRT
2023-01-10 01:44:51 -03:00
committed by GitHub
parent 5a362a0bd5
commit 8e37efa575
35 changed files with 413 additions and 182 deletions

View File

@@ -8,7 +8,7 @@ class ShowLiveChatTooltipCommand extends YTNode {
constructor(data: any) {
super();
this.tooltip = Parser.parse(data.tooltip);
this.tooltip = Parser.parseItem(data.tooltip);
}
}