Interface IParameterDependencyItem

A IDependencyItem with information about a paremeter of a class method and its dependencies.

interface IParameterDependencyItem {
    classOrInstance?: any;
    index: number;
    key?: Optional<ClassPropKey>;
    type: "parameter";
}

Hierarchy (view full)

Properties

classOrInstance?: any

The underlying class or constructor.

index: number

The zero-based index inside the method.

key?: Optional<ClassPropKey>

The key / name, if available.

type: "parameter"

The type.

Generated using TypeDoc