mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-14 10:02:16 +00:00
13 lines
342 B
TypeScript
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;
|
|
}
|
|
} |