mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 02:52:12 +00:00
15 lines
249 B
TypeScript
15 lines
249 B
TypeScript
import Parser from '..';
|
|
import { YTNode } from '../helpers';
|
|
|
|
class GameCard extends YTNode {
|
|
static type = 'GameCard';
|
|
|
|
game;
|
|
|
|
constructor(data: any) {
|
|
super();
|
|
this.game = Parser.parseItem(data.game);
|
|
}
|
|
}
|
|
|
|
export default GameCard; |