@steepleinc/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
16 lines (15 loc) • 439 B
TypeScript
import NavigationEndpoint from '../NavigationEndpoint.js';
import { type Run } from './Text.js';
import type { RawNode } from '../../index.js';
export default class TextRun implements Run {
text: string;
endpoint?: NavigationEndpoint;
bold: boolean;
italics: boolean;
strikethrough: boolean;
deemphasize: boolean;
attachment: any;
constructor(data: RawNode);
toString(): string;
toHTML(): string;
}