Fix thumbnail for Photo
This commit is contained in:
10
astro/src/types/photos/album.d.ts
vendored
10
astro/src/types/photos/album.d.ts
vendored
@@ -38,3 +38,13 @@ type PhotoCategory = {
|
||||
category: PhotoAlbumCategory;
|
||||
pageNumber: number;
|
||||
}
|
||||
|
||||
type PhotoAlbumItem = {
|
||||
id: string;
|
||||
photo: PhotoProps;
|
||||
text: string | null;
|
||||
album: {
|
||||
url: string;
|
||||
title: string;
|
||||
};
|
||||
}
|
||||
|
||||
4
astro/src/types/photos/photo.d.ts
vendored
4
astro/src/types/photos/photo.d.ts
vendored
@@ -5,4 +5,8 @@ type PhotoPage = {
|
||||
id: string;
|
||||
photo: PhotoProps;
|
||||
text: string | null;
|
||||
album: {
|
||||
url: string;
|
||||
title: string;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user