Interface BlockFilter

Options to include or exclude blocks based on type, tag or permutation. If no include options are added it will select all blocks that are not rejected by the exclude options. If at least one include option is added the block must match one of the include options to not be rejected.

Hierarchy

Properties

excludePermutations?: BlockPermutation[]

Remarks

Array of block permutations that the filter should reject if any matches.

excludeTags?: string[]

Remarks

Array of block tags that the filter should reject if any matches.

excludeTypes?: string[]

Remarks

Array of block types that the filter should reject if any matches.

includePermutations?: BlockPermutation[]

Remarks

Array of block permutations that the filter should select if at least one matches.

includeTags?: string[]

Remarks

Array of block tags that the filter should select if at least one matches.

includeTypes?: string[]

Remarks

Array of block types that the filter should select if at least one matches.