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

20 lines
332 B
TypeScript
Raw Normal View History

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