mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
9 lines
250 B
TypeScript
9 lines
250 B
TypeScript
export = NavigatableText;
|
|
declare class NavigatableText extends Text {
|
|
type: string;
|
|
endpoint: NavigationEndpoint;
|
|
toJSON(): NavigatableText;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|