src/lib/types.ts 333 B raw
1
export 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
	blurData?: string;
17
};
18
19
export type ImageArray = {
20
	images: ImageItem[];
21
};