标签: typescript interface
尝试为具有可选子字段的对象创建接口,该子字段具有相同接口的数组。
export interface ItemInterface { name: string; id: number; children?: ItemInterface[]; }
这给我一个错误: 类型'ItemInterface'必须具有返回迭代器的'Symbol.iterator'方法。
答案 0 :(得分:0)
意外地将接口与数组相关联-关闭