mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 13:48:51 +08:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import type { JSONResult } from "./utils.ts";
|
|
import type { GalleryMetadataSingle } from "../page/GalleryMetadata.ts";
|
|
|
|
export type EHImageLimit = {
|
|
current: number;
|
|
max: number;
|
|
};
|
|
|
|
export type EHMetaInfo = Record<string, JSONResult<GalleryMetadataSingle>>;
|