gphotos-scraper
Version:
A tool to extract public url and metadata from shared album
27 lines (26 loc) • 409 B
text/typescript
export interface GoogleAlbum {
id: string;
key: string;
token?: string;
title: string;
url: string;
downloadUrl: string;
createdAt: number;
updatedAt: number;
cover: {
url: string;
width: number;
height: number;
}
owner: {
id: string;
name: string;
fullname: string;
genre: string;
photo: string;
},
items: {
id: string;
url: string;
}[];
}