Interface IRule

interface IRule {
    apply(data, availableHeight, selection, topNGetter): IRuleInstance;
    levelOfDetail(item, height): "high" | "low";
}

Methods