@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
28 lines (27 loc) • 563 B
TypeScript
import type { ModelProperties } from "../common/ModelProperties.js";
/**
* Describes a Portal.
*/
export interface PortalProperties {
/**
* The URL of the portal.
*/
url?: string;
}
/**
* Configuration for a Portal extension object.
*/
export interface PortalExtensionSettingsProperties extends ModelProperties {
/**
* The ID of the app.
*/
appId?: string;
/**
* Whether this portal extension is used by default.
*/
isDefault?: boolean;
/**
* The portal.
*/
portal?: PortalProperties;
}