mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
export = SubFeedOption;
|
|
declare class SubFeedOption {
|
|
constructor(data: any);
|
|
type: string;
|
|
name: Text;
|
|
is_selected: any;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|