Events thrown by the ConfigurationStore

interface ConfigurationStoreEvents {
    ConfigChanged: {
        item: ConfigurationStoreEntry;
        pid: string;
        removed: boolean;
        source: ConfigurationStore;
    };
}

Properties

Properties

ConfigChanged: {
    item: ConfigurationStoreEntry;
    pid: string;
    removed: boolean;
    source: ConfigurationStore;
}

Configuration has changed.