- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
/**
|
|
* Represents a change in the configuration object.
|
|
* Dispatched when one updates the configuration object through the `ConfigService#set` method.
|
|
* @publicApi
|
|
*/
|
|
export interface ConfigChangeEvent<OldValue = any, NewValue = any> {
|
|
path: string;
|
|
oldValue: OldValue;
|
|
newValue: NewValue;
|
|
}
|