interface FunctionArgInfo {
    argIdx?: number | "unnamed";
    argName?: string;
    resolveValue?: boolean | "library";
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of FunctionArgInfo

Properties

argIdx?: number | "unnamed"

the index if the argument can be positional, unnamed in case of something like ..., if the argument must be given with the name, please leave undefined

argName?: string
resolveValue?: boolean | "library"