michangarrito/apps/backend/node_modules/@nestjs/config/dist/interfaces/config-change-event.interface.d.ts
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

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;
}