Interface IMethodDependencyItem

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

interface IMethodDependencyItem {
    classOrInstance?: any;
    key: ClassPropKey;
    type: "method";
}

Hierarchy (view full)

Properties

classOrInstance?: any

The underlying class or constructor.

key: ClassPropKey

The key / name.

type: "method"

The type.

Generated using TypeDoc