mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 22:18:14 +00:00
19 lines
489 B
TypeScript
19 lines
489 B
TypeScript
export = MerchandiseItem;
|
|
declare class MerchandiseItem {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: any;
|
|
description: any;
|
|
thumbnails: Thumbnail[];
|
|
price: any;
|
|
vendor_name: any;
|
|
button_text: any;
|
|
button_accessibility_text: any;
|
|
from_vendor_text: any;
|
|
additional_fees_text: any;
|
|
region_format: any;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import Thumbnail = require("./Thumbnail");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|