@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
13 lines (12 loc) • 363 B
TypeScript
import Text from './misc/Text.js';
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
export default class EmojiPickerCategory extends YTNode {
static type: string;
category_id: string;
title: Text;
emoji_ids: string[];
image_loading_lazy: boolean;
category_type: string;
constructor(data: RawNode);
}