@eagleoutice/flowr - v2.13.15
    Preparing search index...

    The calls that declare the entries of a LinkedInputObject, and where they carry the entry's name.

    interface LinkedInputDeclaration {
        argIdx: number;
        argName: string;
        calls: readonly Identifier[];
    }
    Index
    argIdx: number

    the index of that argument when it is passed positionally

    argName: string

    the name of the argument holding the entry's name

    calls: readonly Identifier[]

    the declaring calls, e.g. shiny's textInput, selectInput, …