Interface LimitNodeParameters

Source
interface LimitNodeParameters {
    keep?: "firstItems" | "lastItems";
    maxItems?: number;
}

Properties§

Source§

readonly keep?: "firstItems" | "lastItems"

When removing items, whether to keep the ones at the start or the ending Default: "firstItems"

Source§

readonly maxItems?: number

If there are more items than this number, some are removed Default: 1 Type options: {"minValue":1}