Files
YouTube.js/typings/lib/parser/youtube/others/NotificationItem.d.ts
2022-05-08 05:56:33 -03:00

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;
};
}