UNPKG

cozy-iiif

Version:

A developer-friendly collection of abstractions and utilities built on top of @iiif/presentation-3 and @iiif/parser

37 lines (19 loc) 373 B
export interface ImageInfo { id: string; width: number; height: number; tiles: TileInfo[]; } export type Size = { width: number; height: number; }; export interface TileInfo { width: number; height?: number; scaleFactors: number[]; } export interface Tile { x: number; y: number; width: number; height: number; url: string; }