UNPKG

gphotos-scraper

Version:

A tool to extract public url and metadata from shared album

12 lines (10 loc) 183 B
import type { Photo } from "./photo"; export interface Album { id: string; title: string; url: string; createdAt: number; updatedAt: number; photos: Photo[]; cover?: Photo; }