我很好奇您将如何操作:
let x = [{}];
在TypepScript中。我环顾四周,无法找到问题的明确答案。我的猜测是您使用Array对象来完成此操作:
let x : Array<Object> = new Array<Object>;
或
let x : [{}] = [{}];
并在此上下文中使用它:
x.push({key: 'text', otherKey: 'text'});
答案 0 :(得分:0)
我会let x : Object[] = [{}];