interface IObserverTree {
    name: string;
    observers?: IObserverTree[];
}

Properties

Properties

name: string
observers?: IObserverTree[]