interface BooleanUnaryNode<Composite> {
    operand: Composite;
    type: "not";
}

Type Parameters

  • Composite

Properties

Properties

operand: Composite
type: "not"