Interface BinaryOperatorSignature

interface BinaryOperatorSignature {
    left: Type;
    return: Type;
    right: Type;
}

Properties

Properties

left: Type
return: Type
right: Type