Interface IConfigurationProperty<PropertyType>

Contains the value and origin of a configuration property.

interface IConfigurationProperty {
    origin: ConfigurationPropertySource;
    value: PropertyType;
}

Type Parameters

  • PropertyType

Properties

Properties

The id of the source of the resolved value of the property

value: PropertyType

The resolved value of the property

Generated using TypeDoc