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