@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
15 lines (14 loc) • 390 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import Text from './misc/Text.js';
export default class SlimVideoMetadata extends YTNode {
static type: string;
title: Text;
collapsed_subtitle: Text;
expanded_subtitle: Text;
owner: YTNode;
description: Text;
video_id: string;
date: Text;
constructor(data: RawNode);
}