interface Filter3DNodesByProperty {
    properties: {
        [key: string]: {
            [key: string]: string[];
        };
    };
}

Properties

Properties

properties: {
    [key: string]: {
        [key: string]: string[];
    };
}

Property filters. Nodes satisfy the filter if, for each property in the nested map(s), they have a value corresponding to that property that is contained within the list associated with that property in the map.