The GgUserInteractionListener interface is used to save listeners to the state. It defines a listener as a combination of event name, tool / component name (GirafeHTMLElement.name) and if it's listening exclusively.

interface GgUserInteractionListener {
    eventName: GgUserInteractionEvent;
    isExclusive: boolean;
    toolName: string;
}
Index

Properties

isExclusive: boolean
toolName: string