How to distinguish different object type in TypeScript?
interface CC { a: number; b: string } interface B { c:number } const obj: CC | B =