@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
16 lines (15 loc) • 527 B
TypeScript
import type { Action } from "@vertigis/arcgis-extensions/support/Action";
import type { ServiceModelProperties } from "../common/ServiceModelProperties.js";
/**
* Global configuration for an application.
*/
export interface ApplicationModelProperties extends ServiceModelProperties {
/**
* Action to be triggered when viewer initialization is complete.
*/
onInitialized?: Action;
/**
* Action to be triggered on viewer initialization before layout selection.
*/
onInitializing?: Action;
}