Files
YouTube.js/typings/lib/parser/contents/classes/Tab.d.ts
2022-06-06 04:20:28 -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");