UNPKG

@berry-cloud/ngx-unsplash

Version:

Lightweight Angular wrapper for the Unsplash API.

25 lines (24 loc) 522 B
export interface StatisticsData { total: number; historical: { change: number; average: number; resolution: string; quantity: number; values?: { date: string; value: number; }[]; }; } export interface UserStatistics { username: string; downloads: StatisticsData; views: StatisticsData; } export interface PhotoStatistics { id: string; downloads: StatisticsData; views: StatisticsData; likes: StatisticsData; }