mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
15 lines
309 B
TypeScript
15 lines
309 B
TypeScript
export = AnalyticsVideo;
|
|
declare class AnalyticsVideo {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: any;
|
|
metadata: {
|
|
views: any;
|
|
published: any;
|
|
thumbnails: Thumbnail[];
|
|
duration: any;
|
|
is_short: any;
|
|
};
|
|
}
|
|
import Thumbnail = require("./Thumbnail");
|