@xct007/frieren-scraper
Version:
238 lines • 4.76 kB
TypeScript
export type DoujindesuLatest = {
title: string;
chapter: string;
thumbnail: string;
url: string | any;
}[];
export type DoujindesuSearch = {
title: string;
type: string;
status: string;
score: string;
thumbnail: string;
url: string;
}[];
export type DoujindesuDetail = {
title: string;
titles: string;
tags: string;
thumbnail: string;
metadata?: {};
links: {
title: string;
url: string;
}[];
};
export type OtakudesuLatest = {
title: string;
day: string;
date: string;
url: string;
thumbnail: string;
}[];
export type OtakudesuSearch = {
title: string;
genres: string;
status: string;
rating: string;
url: string;
thumbnail: string;
}[];
export type OtakudesuDetail = {};
export type YoutubeSearchResult = {
title: string;
thumbnail: string;
duration: string;
uploaded: string;
views: string;
url: string;
}[];
export type YoutubeDownloadResult = {
title: string;
source: string;
duration: string;
thumbnail: string;
urls: {
url: string;
quality: string;
ext: string;
}[];
mp3: string;
};
export type AnoboyLatest = {
title: string;
update: string;
thumbnail: string;
url: string;
}[];
export type AnoboyDetail = {
title: string;
judi: string;
urls: {
source: string;
url: string;
resolution: string;
}[];
};
export type StatusWaIndonesiaAny = {
id: string;
title: string;
video_thumb: string;
video_url: string;
download: string;
date_time_i?: string;
}[];
export type UnsplashSearchResults = {
id: string;
created_at: string;
updated_at: string;
urls: {
[key: string]: any;
};
links: {
download: string;
};
user: {
username: string;
bio: string;
social: {
[key: string]: any;
};
};
}[];
export type InstagramDownloadResults = {
url: string;
}[];
export type KomikuIdLatestResults = {
title: string;
updated: string;
chapter: string;
thumbnail: string;
url: string;
}[];
export type KomikuIdDetailResult = {
Manga: {
isManga: boolean;
title: string;
metadata: {
[key: string]: any;
};
description: string;
chapters: {
chapter: string;
url: string;
}[];
};
Chapter: {
isChapter: boolean;
title: string;
images: string[];
};
};
export type KomikuIdSearchResults = {
title: string;
title_id: string;
awal?: string;
terbaru?: string;
description: string;
thumbnail: string;
url: string;
}[];
export type TiktokDownloadResult = {
unique_id: string;
nickname: string;
download_count: number;
duration: number;
description: string;
play: string;
wmplay: string;
hdplay: string;
music: string;
};
export type ZippyShareResult = {
name?: string;
size?: string;
uploaded?: string;
url: string;
};
export type FacebookDownloadResult = {
title: string;
isHdAvailable: boolean;
urls: {
sd?: string;
hd?: string;
}[];
};
export type MusicApiJamendoResults = {
title: string;
artist: string;
album: string;
release_date: string;
thumbnail: string;
audio: string;
}[];
export type ApkmodyIoSearchResults = {
title: string;
description: string;
thumbnail: string;
url: string;
}[];
export type ApkmodyIoDetailResult = {
title: string;
updated: string;
metadata: object;
urls: object;
};
export type PinterestDownloadResult = {
url: string;
};
export type PhotoFuniaListResults = {
title: string;
key: string;
description: string;
}[];
export type PhotoFuniaCreatedResult = {
large: {
title: string;
url: string;
format: string;
width: number;
height: number;
};
reqular: {
title: string;
url: string;
format: string;
width: number;
height: number;
};
small: {
title: string;
url: string;
format: string;
width: number;
height: number;
};
};
export type StableDiffusionResult = {
process_time: number;
seed: string;
ext: string;
mimetype: string;
base64Img: string;
};
export type BokepSinLatestSearchResults = {
title: string;
views: string;
duration: string;
url: string;
thumbnail: string;
}[];
export type BokepSinDetail = {
title: string;
views: string;
duration: string;
thumbnail: string;
embed: string;
};
//# sourceMappingURL=Types.d.ts.map