Files
YouTube.js/deno/src/parser/classes/ThumbnailOverlayPinking.ts
2023-04-29 05:15:47 +00:00

13 lines
285 B
TypeScript

import { YTNode } from '../helpers.ts';
import type { RawNode } from '../index.ts';
export default class ThumbnailOverlayPinking extends YTNode {
static type = 'ThumbnailOverlayPinking';
hack: boolean;
constructor(data: RawNode) {
super();
this.hack = data.hack;
}
}