TS2320 错误的本质、触发场景与在 Angular / RxJS 项目中的系统化应对在 TypeScript 编译阶段,TS2320 表示:某个 interface 被声明为同时 extends 多个父类型,但这些父类型中存在同名成员,而且这些同名成员的类型、可选性、只读性、重载签名、索引签名等并不一致,导致无法合并为一个一致的结构。典型报错文案是:Interface 'X' cannot simultaneously extend types 'A' and 'B'. Named property 'p' of types 'A' and 'B' are not identical.