mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 08:11:12 -05:00
Implement Phase 4 optimizations
This commit is contained in:
22
src/types/photos.ts
Normal file
22
src/types/photos.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Photo-related type definitions
|
||||
*/
|
||||
|
||||
export interface PhotoItem {
|
||||
id: string;
|
||||
url: string;
|
||||
filename: string;
|
||||
caption?: string;
|
||||
size?: number;
|
||||
type?: string;
|
||||
}
|
||||
|
||||
export interface PhotoSubmissionItem {
|
||||
id: string;
|
||||
cloudflare_image_id: string;
|
||||
cloudflare_image_url: string;
|
||||
title?: string;
|
||||
caption?: string;
|
||||
date_taken?: string;
|
||||
order_index: number;
|
||||
}
|
||||
Reference in New Issue
Block a user