Configuration change event

interface ConfigChange {
    key: string;
    oldValue: unknown;
    newValue: unknown;
    timestamp: Date;
}

Properties

key: string

Configuration key that changed

oldValue: unknown

Previous value

newValue: unknown

New value

timestamp: Date

Timestamp of the change