refactor(parser)!: Implement endpoint/command parsers (#812)

This commit is contained in:
Luan
2024-11-21 18:24:16 -03:00
committed by GitHub
parent 7156a585c0
commit 7397aa3f64
114 changed files with 2228 additions and 1956 deletions

View File

@@ -0,0 +1,14 @@
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import { Text } from '../misc.js';
export default class DialogHeaderView extends YTNode {
static type = 'DialogHeaderView';
public headline: Text;
constructor(data: RawNode) {
super();
this.headline = Text.fromAttributed(data.headline);
}
}