feat: add Eporner and Txxx along with minor fixes (#16)
Co-authored-by: Pi Patel <pi.patel@gmail.com>
This commit is contained in:
@@ -3,13 +3,14 @@ export interface IVideoData {
|
||||
data: {
|
||||
title: string;
|
||||
id: string;
|
||||
image: string;
|
||||
image?: string;
|
||||
duration: string;
|
||||
views: string;
|
||||
rating: string;
|
||||
rating?: string;
|
||||
uploaded: string;
|
||||
upvoted: string | null;
|
||||
downvoted: string | null;
|
||||
channel?: string;
|
||||
models: string[];
|
||||
tags: string[];
|
||||
};
|
||||
@@ -23,6 +24,19 @@ export interface ISearchVideoData {
|
||||
source: string;
|
||||
}
|
||||
|
||||
export interface ISearchItem {
|
||||
link: string;
|
||||
id: string;
|
||||
title?: string;
|
||||
image?: string;
|
||||
duration?: string;
|
||||
rating?: string;
|
||||
views?: string;
|
||||
uploader?: string;
|
||||
video?: string;
|
||||
}
|
||||
|
||||
|
||||
export interface MaybeError {
|
||||
message: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user