mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
export = EmojiRun;
|
|
declare class EmojiRun {
|
|
constructor(data: any);
|
|
text: any;
|
|
emoji: {
|
|
emoji_id: any;
|
|
shortcuts: any;
|
|
search_terms: any;
|
|
image: Thumbnail[];
|
|
};
|
|
}
|
|
import Thumbnail = require("./Thumbnail");
|