mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-26 16:18:51 +00:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
export = ContinuationItem;
|
|
declare class ContinuationItem {
|
|
constructor(data: any);
|
|
type: string;
|
|
trigger: any;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|