Options to configure the chain modifier.

interface ChainModifierOptions {
    chain?: Partial<ChainModifierOptions | SortModifierOptions | InvertModifierOptions | RangeModifierOptions | MathModifierOptions>[];
    reverse?: boolean;
    type: "Chain";
}

Hierarchy (view full)

Properties

Properties

chain?: Partial<ChainModifierOptions | SortModifierOptions | InvertModifierOptions | RangeModifierOptions | MathModifierOptions>[]

Array of options of the chain modifiers.

reverse?: boolean

Whether to revert the order before execution.

type: "Chain"

Name of the related modifier for these options.