UNPKG

@nulib/react-media-player

Version:

Viewer for audio, video and image file types driven by a IIIF manifest

12 lines (11 loc) 469 B
import { InternationalString } from "@hyperion-framework/types"; export interface LabeledResource { id?: string; type: "Dataset" | "Image" | "Video" | "Sound" | "Text"; format?: string; label: InternationalString; language?: string | string[]; processingLanguage?: string; textDirection?: "ltr" | "rtl" | "auto"; } export declare const getSupplementingResources: (vault: any, activeCanvas: string, format: string) => Array<LabeledResource>;