FreakingGenius - v0.1.0
    Preparing search index...

    Interface UnaryOpNode

    A unary operator node (negation, square root, etc.).

    interface UnaryOpNode {
        kind: "unaryOp";
        operand: MathNode;
        operator: "-" | "√";
    }
    Index

    Properties

    Properties

    kind: "unaryOp"
    operand: MathNode
    operator: "-" | "√"