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