Files
YouTube.js/typings/lib/parser/classes/ChannelVideoPlayer.d.ts
2022-07-11 06:13:21 -03:00

12 lines
239 B
TypeScript

export = ChannelVideoPlayer;
declare class ChannelVideoPlayer {
constructor(data: any);
type: string;
id: any;
title: Text;
description: Text;
views: Text;
published_at: Text;
}
import Text = require("./Text");