@tindtechnologies/universalviewer
Version:
The Universal Viewer is a community-developed open source project on a mission to help you share your 📚📜📰📽️📻🗿 with the 🌎
11 lines (10 loc) • 365 B
TypeScript
import { Thumb } from "manifesto.js";
import { ViewingDirection } from "@iiif/vocabulary";
declare const Thumbnails: ({ onClick, paged, selected, thumbs, viewingDirection, }: {
onClick: (thumb: Thumb) => void;
paged: boolean;
selected: number[];
thumbs: Thumb[];
viewingDirection: ViewingDirection;
}) => JSX.Element;
export default Thumbnails;