I need to update the client JSON with my own JSON data
Client JSON:
interface Cols {
displayName: string;
}
{
cols:[
{
displayName: 'abc';
}
]
}
My JSON:
interface Cols {
label: string;
}
{
cols:[
{
label:'z';
}
]
}
I want to replace 'z' with 'abc'