UNPKG

@mariolazzari/rijks

Version:

Rijksmuseum REST APIs client TypeScript based

21 lines (20 loc) 479 B
import { Culture } from "./Culture"; import { Format } from "./Format"; import { Sort } from "./Sort"; export declare type CollectionRequest = { searchTerm: string; } & Partial<{ page: number; perPage: number; format: Format; culture: Culture; involvedMaker: string; type: string; material: string; technique: string; period: string; hex: string; imageOnly: boolean; topPieces: boolean; sort: Sort; }>;