mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
13 lines
334 B
TypeScript
13 lines
334 B
TypeScript
export = ToggleMenuServiceItem;
|
|
declare class ToggleMenuServiceItem {
|
|
constructor(data: any);
|
|
type: string;
|
|
text: Text;
|
|
toggled_text: Text;
|
|
icon_type: any;
|
|
toggled_icon_type: any;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|