I have a JS object with deeply nested values:
let IObj = {
a: {
b: string
};
d: string;
};
let obj: IObj = {
a: {
b: 'c'
},
d: 'e'
}
I want to make it immutable:
let immutableObj = Immutable.fromJS(obj);
Which interface is implemented by immutableObj?