UNPKG

307 BTypeScriptView Raw
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 */
6export interface ConfigChangeEvent<OldValue = any, NewValue = any> {
7 path: string;
8 oldValue: OldValue;
9 newValue: NewValue;
10}