mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
export = CallToActionButton;
|
|
declare class CallToActionButton {
|
|
constructor(data: any);
|
|
type: string;
|
|
label: Text;
|
|
icon_type: any;
|
|
style: any;
|
|
}
|
|
import Text = require("./Text");
|