mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-03 09:35:05 +00:00
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
export = NotificationItem;
|
|
declare class NotificationItem {
|
|
static parse(data: any): any;
|
|
static parseItem(item: any): {
|
|
title: any;
|
|
sent_time: any;
|
|
channel_name: any;
|
|
channel_thumbnail: any;
|
|
video_thumbnail: any;
|
|
video_url: string;
|
|
read: any;
|
|
notification_id: any;
|
|
};
|
|
}
|