chore: update type definitions

This commit is contained in:
LuanRT
2022-06-06 04:20:28 -03:00
parent 359020193b
commit 55fd4e8143
105 changed files with 1410 additions and 145 deletions

View File

@@ -0,0 +1,13 @@
export = AnalyticsVideo;
declare class AnalyticsVideo {
constructor(data: any);
type: string;
title: any;
metadata: {
views: any;
published: any;
thumbnails: any;
duration: any;
is_short: any;
};
}