1 | /**
|
2 | * Represents a change in the configuration object.
|
3 | * Dispatched when one updates the configuration object through the `ConfigService#set` method.
|
4 | * @publicApi
|
5 | */
|
6 | export interface ConfigChangeEvent<OldValue = any, NewValue = any> {
|
7 | path: string;
|
8 | oldValue: OldValue;
|
9 | newValue: NewValue;
|
10 | }
|