@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
87 lines (86 loc) • 3.88 kB
TypeScript
import { CommandRegistry } from "../CommandRegistry.js";
import { AppCommands } from "./app.js";
import { AuthCommands } from "./auth.js";
import { BasemapCommands } from "./basemap.js";
import { BulkEditingCommands } from "./bulk-editing.js";
import { ChartsCommands } from "./charts.js";
import { DrawingCommands } from "./drawing.js";
import { EditCommands } from "./edit.js";
import { FileCommands } from "./file.js";
import { FilterBuilderCommands } from "./filter-builder.js";
import { GeolocationCommands } from "./geolocation.js";
import { GeometryToolbarCommands } from "./geometry-toolbar.js";
import { GeometryCommands } from "./geometry.js";
import { HighlightsCommands } from "./highlights.js";
import { IwtmCommands } from "./iwtm.js";
import { KpiCommands } from "./kpi.js";
import { LayerComparisonCommands } from "./layer-comparison.js";
import { LayerListCommands } from "./layer-list.js";
import { LayerPresetsCommands } from "./layer-presets.js";
import { LayersCommands } from "./layers.js";
import { LicensingCommands } from "./licensing.js";
import { LocationMarkerCommands } from "./location-marker.js";
import { MapCommands } from "./map.js";
import { MeasurementCommands } from "./measurement.js";
import { NetworkCommands } from "./network.js";
import { OfflineCommands } from "./offline.js";
import { PanelCommands } from "./panel.js";
import { PhotosCommands } from "./photos.js";
import { PrintCommands } from "./printing.js";
import { ProjectCommands } from "./project.js";
import { QueryBuilderCommands } from "./query-builder.js";
import { RegionCommands } from "./region.js";
import { ReportsCommands } from "./reports.js";
import { ResultsCommands } from "./results.js";
import { SearchCommands } from "./search.js";
import { SketchingCommands } from "./sketching.js";
import { StudioAnalyticsCommands } from "./studioAnalytics.js";
import { SystemCommands } from "./system.js";
import { UICommands } from "./ui.js";
import { UtilityNetworkCommands } from "./utility-network.js";
import { ViewerCommands } from "./viewer.js";
import { WorkflowCommands } from "./workflow.js";
export declare class Commands extends CommandRegistry {
readonly app: AppCommands;
readonly auth: AuthCommands;
readonly basemap: BasemapCommands;
readonly bulkEditing: BulkEditingCommands;
readonly charts: ChartsCommands;
readonly drawing: DrawingCommands;
readonly edit: EditCommands;
readonly file: FileCommands;
readonly filterBuilder: FilterBuilderCommands;
readonly geolocation: GeolocationCommands;
readonly geometry: GeometryCommands;
readonly geometryToolbar: GeometryToolbarCommands;
readonly highlights: HighlightsCommands;
readonly iwtm: IwtmCommands;
readonly kpi: KpiCommands;
readonly layerList: LayerListCommands;
readonly layers: LayersCommands;
readonly layerComparison: LayerComparisonCommands;
readonly layerPresets: LayerPresetsCommands;
readonly licensing: LicensingCommands;
readonly locationMarker: LocationMarkerCommands;
readonly map: MapCommands;
readonly measurement: MeasurementCommands;
readonly network: NetworkCommands;
readonly offline: OfflineCommands;
readonly panel: PanelCommands;
readonly project: ProjectCommands;
readonly photos: PhotosCommands;
readonly printing: PrintCommands;
readonly queryBuilder: QueryBuilderCommands;
readonly region: RegionCommands;
readonly reports: ReportsCommands;
readonly results: ResultsCommands;
readonly search: SearchCommands;
readonly sketching: SketchingCommands;
readonly studioAnalytics: StudioAnalyticsCommands;
readonly system: SystemCommands;
readonly ui: UICommands;
readonly utilityNetwork: UtilityNetworkCommands;
readonly viewer: ViewerCommands;
readonly workflow: WorkflowCommands;
protected readonly _prefix = "";
}