mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-15 10:04:28 +08:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
export type EhFileBasic = {
|
|
id: number;
|
|
width: number;
|
|
height: number;
|
|
is_original: boolean;
|
|
};
|
|
|
|
export type EhFiles = Record<string, EhFileBasic[]>;
|