UNPKG

@tindtechnologies/universalviewer

Version:

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

8 lines (7 loc) 307 B
import { SupportedSelectors } from "./selector-extensions"; import { Selector } from "@iiif/presentation-3"; export type ParsedSelector = { selector: SupportedSelectors | null; selectors: SupportedSelectors[]; }; export declare function parseSelector(source: Selector | Selector[]): ParsedSelector;