Event chain node (for building tree structures)

interface EventChainNode {
    children: node.common.apis.reflections.EventChainNode[];
    depth: number;
    event: node.apis.insights.InsightsEvent;
}

Properties

Properties

depth: number