Coda by Ian Macalinao
    Preparing search index...

    Interface InstructionArgumentLinkNode<TInstruction>

    A reference to an argument of another instruction.

    interface InstructionArgumentLinkNode<
        TInstruction extends
            InstructionLinkNode
            | undefined = InstructionLinkNode | undefined,
    > {
        instruction?: TInstruction;
        kind: "instructionArgumentLinkNode";
        name: CamelCaseString;
    }

    Type Parameters

    Index
    instruction?: TInstruction

    The instruction the referenced argument belongs to. When omitted, the surrounding instruction is assumed.

    kind: "instructionArgumentLinkNode"

    The name of the referenced instruction argument.