UNPKG

@parcility/kennel

Version:

A comprehensive, easy-to-use native depiction renderer.

19 lines (18 loc) 543 B
import DepictionBaseView from "./base"; interface Screenshot { url: string; fullSizeURL?: string; video: boolean; accessibilityText: string; } export default class DepictionScreenshotsView extends DepictionBaseView { screenshots: Screenshot[]; itemWidth: number; itemHeight: number; itemBorderRadius: number; static viewName: string; constructor(dictionary: any); parseScreenshot(dictionary: any): Screenshot | undefined; make(): Promise<import("../renderable").RenderableElement>; } export {};