https://www.typescriptlang.org/ko/docs/handbook/declaration-merging.html

중복되지 않는 형식에 한해서 동일한 이름으로 선언할 수 있는 방법

interface Box {
  height: number;
  width: number;
}
interface Box {
  scale: number;
}
let box: Box = { height: 5, width: 6, scale: 10 };