interface PatchSetting {
    op: string;
    path: string;
    value: string | number | {} | unknown[];
}

Properties

Properties

op: string

The operation to be performed

path: string

The path of the setting to be patched

value: string | number | {} | unknown[]

The value to replace at the specified path