mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
21 lines
508 B
TypeScript
21 lines
508 B
TypeScript
export = ToggleButton;
|
|
declare class ToggleButton {
|
|
constructor(data: any);
|
|
type: string;
|
|
text: Text;
|
|
toggled_text: Text;
|
|
tooltip: any;
|
|
toggled_tooltip: any;
|
|
is_toggled: any;
|
|
is_disabled: any;
|
|
icon_type: any;
|
|
like_count: number;
|
|
short_like_count: any;
|
|
endpoint: NavigationEndpoint;
|
|
toggled_endpoint: NavigationEndpoint;
|
|
button_id: any;
|
|
target_id: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|