Updated and added pages

This commit is contained in:
2024-10-09 01:40:36 +09:00
parent 780905fb4e
commit 545ac73e0e
37 changed files with 1552 additions and 291 deletions

18
utils/galleryEntry.ts Normal file
View File

@@ -0,0 +1,18 @@
/**
* Types for gallery image entry data
* @module utils/galleryEntry
*/
/**
* Interface for gallery image entry
* @property {number} id id from database
* @property {string} imagePath image URL
* @property {string} caption caption of the image
*/
interface GalleryEntry {
id: number;
imagePath: string;
caption: string;
}
export type { GalleryEntry };