@mariolazzari/rijks
Version:
Rijksmuseum REST APIs client TypeScript based
22 lines (20 loc) • 424 B
text/typescript
import { Culture } from "./Culture";
import { Format } from "./Format";
import { Sort } from "./Sort";
export 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;
}>;