@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
16 lines (15 loc) • 478 B
TypeScript
import type { Event } from "../Event.js";
import { EventRegistry } from "../EventRegistry.js";
import type { TraceCompletedArgs } from "./utility-network.js";
/**
* Events relating to utility network tracing.
*/
export declare class TracingEvents extends EventRegistry {
protected readonly _prefix = "tracing";
/**
* Raised when a utility network trace is succesfully completed.
*
* @mobileOnly
*/
get completed(): Event<TraceCompletedArgs>;
}