Coda by Ian Macalinao
    Preparing search index...

    Interface ConditionalValueNode<TCondition, TValue, TIfTrue, TIfFalse>

    interface ConditionalValueNode<
        TCondition extends ConditionNode = ConditionNode,
        TValue extends ValueNode | undefined = ValueNode | undefined,
        TIfTrue extends
            InstructionInputValueNode | undefined =
            | InstructionInputValueNode
            | undefined,
        TIfFalse extends
            InstructionInputValueNode
            | undefined = InstructionInputValueNode | undefined,
    > {
        condition: TCondition;
        ifFalse?: TIfFalse;
        ifTrue?: TIfTrue;
        kind: "conditionalValueNode";
        value?: TValue;
    }

    Type Parameters

    Index

    Properties

    condition: TCondition
    ifFalse?: TIfFalse
    ifTrue?: TIfTrue
    kind: "conditionalValueNode"
    value?: TValue