UNPKG

universalviewer

Version:

The Universal Viewer is a community-developed open source project on a mission to help you share your 📚📜📰📽️📻🗿 with the 🌎

14 lines (13 loc) 511 B
import { ViewingDirection } from "@iiif/vocabulary"; import { Thumb } from "manifesto.js"; import React from "react"; declare const Thumbnails: ({ onClick, onKeyDown, paged, selected, thumbs, viewingDirection, truncateThumbnailLabels, }: { onClick: (thumb: Thumb) => void; onKeyDown: (thumb: Thumb) => void; paged: boolean; selected: number[]; thumbs: Thumb[]; viewingDirection: ViewingDirection; truncateThumbnailLabels: boolean; }) => React.JSX.Element; export default Thumbnails;