Interface TernaryOperatorSignature

interface TernaryOperatorSignature {
    first: Type;
    return: Type;
    second: Type;
    third: Type;
}

Properties

first: Type
return: Type
second: Type
third: Type