UNPKG

@duell10111/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

13 lines 344 B
import Text from './misc/Text.js'; import { YTNode } from '../helpers.js'; export default class AvatarLockup extends YTNode { static type = 'AvatarLockup'; title; size; constructor(data) { super(); this.title = new Text(data.title); this.size = data.size; } } //# sourceMappingURL=AvatarLockup.js.map