Interface ModuleProperty

interface ModuleProperty {
    effectiveValue: any;
    module: string;
    name: string;
    value: any;
}

Properties

effectiveValue: any

The value of the property, including a value potentially inherited from parent containers.

module: string

Name of the module specifying this property.

name: string

Name of the module property.

value: any

The value of the property as set for this specific container.

Generated using TypeDoc