interface FunctionInfo {
    argIdx?: number | "unnamed";
    argName?: string;
    ignoreIf?: "arg-missing";
    linkTo?: DependencyInfoLink[];
    name: string;
    package?: string;
    resolveValue?: boolean | "library";
}

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
ignoreIf?: "arg-missing"
name: string
package?: string
resolveValue?: boolean | "library"