My personal photography website steve.phot
portfolio photography svelte sveltekit
at main 20 lines 313 B view raw
1export type ImageItem = { 2 slug: string; 3 title: string; 4 date: string; 5 image: string; 6 thumb: string; 7 type: string; 8 camera: string; 9 lens: string; 10 aperture: string; 11 exposure: string; 12 focalLength: string; 13 iso: string; 14 make: string; 15 tags: string[]; 16}; 17 18export type ImageArray = { 19 images: ImageItem[]; 20};