interface UnaryOperationNode {
    kind: "UnaryOperationNode";
    operand: OperationNode;
    operator: OperationNode;
}

Hierarchy (view full)

Properties

Properties

kind: "UnaryOperationNode"
operand: OperationNode
operator: OperationNode