mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 13:48:51 +08:00
17 lines
353 B
TypeScript
17 lines
353 B
TypeScript
export type EhFileBasic = {
|
|
id: number | bigint;
|
|
width: number | bigint;
|
|
height: number | bigint;
|
|
is_original: boolean;
|
|
};
|
|
|
|
export type EhFileExtend = {
|
|
id: number | bigint;
|
|
width: number | bigint;
|
|
height: number | bigint;
|
|
is_original: boolean;
|
|
token: string;
|
|
};
|
|
|
|
export type EhFiles = Record<string, EhFileBasic[]>;
|