I want to create a hierarchy of nested objects in typescript that looks like the following
snapshot{
profile{
data{
firstName = 'a'
lastName = 'aa'
}
}
}
I dont want to create a class structure, just want to create the nested hierarchy of objects thats all.