mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
export = Button;
|
|
declare class Button {
|
|
constructor(data: any);
|
|
type: string;
|
|
text: any;
|
|
label: any;
|
|
tooltip: any;
|
|
icon_type: any;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|