Interface ISerializablePropertyDependencyItemWithInfo

A serizable version of an IPropertyDependencyItem.

interface ISerializablePropertyDependencyItemWithInfo {
    className: Nullable<string>;
    existsIn: Nullable<IStackInfo>;
    info: IDependencyInformation;
    isStatic: boolean;
    name: string;
    type: "property";
}

Hierarchy (view full)

Properties

className: Nullable<string>

The name of the underlying class, if available.

existsIn: Nullable<IStackInfo>

Information about the origin.

The underlying information.

isStatic: boolean

Is underlying type static or not.

name: string

The name of the property.

type: "property"

The type.

Generated using TypeDoc