I can do this:
result: MyInterface[] = [{prop1: val, prop2: val}]
result2: MyInterface[] = [{prop1: val, prop2: val}]
totalResult = [
this.result,
this.result2
]
this gives me [][], the question is how to merge this initialization into creation result and reusult2 inside totalResult and telling that totalResult is array or arrays of MyInterface ?
totalResult: MyInterface[][] = ...?