export interface example {
book:{
first:number;
second:string;
}
}
interface table extends example{
book:{
third:null
}
}
Is it possible to extend same object in typescript ? in some case I only want to use example case without book third