@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
15 lines (14 loc) • 338 B
TypeScript
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
/**
* Configuration for an image component.
*/
export interface ImageModelProperties extends ComponentModelProperties {
/**
* The image source.
*/
src?: string;
/**
* The alternative text for the image.
*/
alt: string;
}