UNPKG

universalviewer

Version:

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

10 lines (9 loc) 301 B
import { UVAdapter } from "./UVAdapter"; export interface IContentHandler<IUVData> { adapter?: UVAdapter | undefined; set(data: IUVData, initial?: boolean): void; dispose(): void; on(name: string, callback: Function, ctx?: any): void; resize(): void; exitFullScreen(): void; }