RenaiApp/src/main/modules/nhentai/nhentai.d.ts

23 lines
399 B
TypeScript

declare namespace Nhentai {
type Favorite = {
name: string;
torrentFile: NodeJS.ReadableStream;
};
type Gallery = {
url: string;
title: {
pre: string;
main: string;
post: string;
};
artists: string[];
groups: string[];
parodies: string[];
characters: string[];
tags: string[];
languages: string[];
uploadTime?: number;
};
}