Files
YouTube.js/src/parser/classes/GuideDownloadsEntry.ts

13 lines
342 B
TypeScript

import GuideEntry from './GuideEntry.js';
import type { RawNode } from '../index.js';
export default class GuideDownloadsEntry extends GuideEntry {
static type = 'GuideDownloadsEntry';
always_show: boolean;
constructor(data: RawNode) {
super(data.entryRenderer.guideEntryRenderer);
this.always_show = !!data.alwaysShow;
}
}