@mariolazzari/met
Version:
This package is a TypeScript based wrapper around the public REST APIs of *Metropolitan museum of Art* (New York).
17 lines (16 loc) • 337 B
text/typescript
export type SearchRequest = {
searchTerm: string;
page?: number;
perPage?: number;
isHighligh?: boolean;
title?: boolean;
tags?: boolean;
departmentId?: number;
isOnView?: boolean;
artistOrCulture?: boolean;
medium?: string;
hasImages?: boolean;
geoLocation?: string;
dateBegin?: number;
dateEnd?: number;
};