mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
export = WatchCardCompactVideo;
|
|
declare class WatchCardCompactVideo {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: Text;
|
|
subtitle: Text;
|
|
duration: {
|
|
text: any;
|
|
seconds: number;
|
|
};
|
|
style: any;
|
|
}
|
|
import Text = require("./Text");
|