Interface IPropertyDependencyItem

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

interface IPropertyDependencyItem {
    classOrInstance?: any;
    key: ClassPropKey;
    type: "property";
}

Hierarchy (view full)

Properties

classOrInstance?: any

The underlying class or constructor.

key: ClassPropKey

The key / name.

type: "property"

The type.

Generated using TypeDoc