mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
export = MerchandiseShelf;
|
|
declare class MerchandiseShelf {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: any;
|
|
menu: any;
|
|
items: any;
|
|
get contents(): any;
|
|
}
|