UNPKG

gphotos-scraper

Version:

A tool to extract public url and metadata from shared album

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