Wondering about the best way to achieve this:
let x = [{}];
in TypeScript. I've searched high and low for a definitive answer to this query. My assumption is that it can be done using the Array object:
let x : Array<Object> = new Array<Object>;
or
let x : [{}] = [{}];
And implementing it in this scenario:
x.push({key: 'text', otherKey: 'text'});