Coda by Ian Macalinao
    Preparing search index...

    Interface InstructionArgumentNode<TDefaultValue>

    interface InstructionArgumentNode<
        TDefaultValue extends
            InstructionInputValueNode
            | undefined = InstructionInputValueNode | undefined,
    > {
        defaultValue?: TDefaultValue;
        defaultValueStrategy?: "omitted"
        | "optional";
        docs?: Docs;
        kind: "instructionArgumentNode";
        name: CamelCaseString;
        type: TypeNode;
    }

    Type Parameters

    Index

    Properties

    defaultValue?: TDefaultValue
    defaultValueStrategy?: "omitted" | "optional"
    docs?: Docs
    kind: "instructionArgumentNode"
    type: TypeNode