Interface IConfigurationProperty<PropertyType>

Contains the value and origin of a configuration property.

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

Type Parameters

  • PropertyType

Properties

Properties

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

The resolved value of the property