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