Uses operators to act on a single operand in an expression

interface UnaryExpression {
    argument?: Expression;
    operator?: string;
    type?: string;
}

Properties

argument?: Expression
operator?: string
type?: string
MMNEPVFCICPMFPCPTTAAATR