UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

11 lines (10 loc) • 307 B
/** * 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; }