UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

18 lines (17 loc) 607 B
import type { Event } from "../Event.js"; import { EventRegistry } from "../EventRegistry.js"; /** * Arguments for the "display.overlap-element-translate-started" event. */ export interface ElementTranslationStartedArgs { } export declare class DisplayEvents extends EventRegistry { protected readonly _prefix = "display"; /** * Raised when one UI element is being moved overtop of another, such that * the element underneath is partially or fully obscured. Mobile only. * * @mobileOnly */ get overlapElementTranslateStarted(): Event<ElementTranslationStartedArgs>; }