Event chain node (for building tree structures)

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

Properties

Properties

depth: number