I\'m trying to write a function where I\'d like to indicate that it returns some kind of plain JavaScript object. The object\'s signature is unknown, and not interestin
You can try recursive type (naive solution)
type SerializableObject = { [x: string]: SerializableObject | number | string | [] };
Not good, not terrible :)