ConfigChangeEvent
Represents a change in the configuration object.
Dispatched when one updates the configuration object through the ConfigService#set
method.
interface ConfigChangeEvent<OldValue = any, NewValue = any> {
path: string
oldValue: OldValue
newValue: NewValue
}
Properties
Property | Description |
---|---|
path: string
|
|
oldValue: OldValue
|
|
newValue: NewValue
|