roll-parser - v3.0.0-beta.0
    Preparing search index...

    Type Alias ComparePoint

    A comparison threshold used by exploding dice, reroll, and success counting.

    The value is an ASTNode to support computed thresholds (e.g., >=ceil(5)), matching the pattern used by DiceNode.count and DiceNode.sides.

    type ComparePoint = {
        operator: CompareOp;
        value: ASTNode;
    }
    Index
    operator: CompareOp
    value: ASTNode