add apis

This commit is contained in:
2025-02-22 23:41:22 +08:00
parent 2063a99c83
commit c7288b2cb4
34 changed files with 1170 additions and 328 deletions

16
src/types/image.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
export interface Image {
id: number;
file_name: string;
url: string;
width: number;
height: number;
created_at: string;
thumbnail: string;
}
export interface ImageRecord {
date: string;
list: Image[];
}
export type ImageList = ImageRecord[];