chore: v15.0.0 release

This commit is contained in:
LuanRT
2025-07-18 15:25:50 +00:00
parent e94b715e7a
commit ddc35db72e
32 changed files with 583 additions and 444 deletions

View 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);
}
}