interface ConfigEventTypes {
    config.update: {
        config: Config;
        key: string | number | symbol;
        path: (string | number | symbol)[];
        target: any;
        value: any;
    };
}

Properties

Properties

config.update: {
    config: Config;
    key: string | number | symbol;
    path: (string | number | symbol)[];
    target: any;
    value: any;
}