@berry-cloud/ngx-unsplash
Version:
Lightweight Angular wrapper for the Unsplash API.
8 lines (7 loc) • 525 B
TypeScript
export type UnsplashOrientation = 'landscape' | 'portrait' | 'squarish';
export type UnsplashOrderBy = 'latest' | 'oldest' | 'popular';
export type UnsplashFeaturedOrderBy = 'featured' | UnsplashOrderBy;
export type UnsplashResolution = 'days' | 'months' | 'years';
export type UnsplashContentFilter = 'low' | 'high';
export type UnsplashColor = 'black_and_white' | 'black' | 'white' | 'yellow' | 'orange' | 'red' | 'purple' | 'magenta' | 'green' | 'teal' | 'blue';
export type UnsplashSearchOrderBy = 'latest' | 'relevant';