标签: typescript
如何确保两个接口具有相同的属性?
interface A { a: string, b: number }
interface B { a: any, b: any }
界面B应该看起来像这样。