Files
YouTube.js/src/parser/classes/ytkids/AnchoredSection.ts

32 lines
913 B
TypeScript

import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
import { Parser } from '../../index.js';
import NavigationEndpoint from '../NavigationEndpoint.js';
import SectionList from '../SectionList.js';
export default class AnchoredSection extends YTNode {
static type = 'AnchoredSection';
title: string;
content: SectionList | null;
endpoint: NavigationEndpoint;
category_assets: {
asset_key: string;
background_color: string;
};
category_type: string;
constructor(data: RawNode) {
super();
this.title = data.title;
this.content = Parser.parseItem(data.content, SectionList);
this.endpoint = new NavigationEndpoint(data.navigationEndpoint);
this.category_assets = {
asset_key: data.categoryAssets?.assetKey,
background_color: data.categoryAssets?.backgroundColor
};
this.category_type = data.categoryType;
}
}