I have an Object like this that is created by underscore\'s _.groupBy() method.
_.groupBy()
myObject = { \"key\" : [{Object},{Object2},{Object3}], \"key
Instead of using Object as a type use Record
interface myObjInterface { [key: string]: Record[] }