Files
YouTube.js/typings/lib/parser/classes/Tab.d.ts
2022-07-11 06:13:21 -03:00

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");