mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-26 08:08:54 +00:00
chore: v15.0.0 release
This commit is contained in:
16
deno/src/parser/classes/DismissableDialogContentSection.ts
Normal file
16
deno/src/parser/classes/DismissableDialogContentSection.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { YTNode } from '../helpers.ts';
|
||||
import type { RawNode } from '../index.ts';
|
||||
import Text from './misc/Text.ts';
|
||||
|
||||
export default class DismissableDialogContentSection extends YTNode {
|
||||
static type = 'DismissableDialogContentSection';
|
||||
|
||||
public title: Text;
|
||||
public subtitle: Text;
|
||||
|
||||
constructor(data: RawNode) {
|
||||
super();
|
||||
this.title = new Text(data.title);
|
||||
this.subtitle = new Text(data.subtitle);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user