mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
export = Tab;
|
|
declare class Tab {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: any;
|
|
selected: any;
|
|
endpoint: NavigationEndpoint;
|
|
content: any;
|
|
}
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|