feat: add Eporner and Txxx along with minor fixes (#16)

Co-authored-by: Pi Patel <pi.patel@gmail.com>
This commit is contained in:
Lame-Fortuna
2026-03-12 16:21:04 +05:30
committed by GitHub
parent ac1a6d82fb
commit 09b49f1649
23 changed files with 984 additions and 130 deletions

View File

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