TIL,WIL(일간,주간 회고)
TIL interface 교차타입
worldint
2023. 5. 30. 15:42
interface도 type에 할당할 때 &(교차타입)기호를 사용하여
여러 인테페이스를 하나로 합칠 수 있다
interface A {
red:"apple"
}
interface B {
green:"sky"
}
type T = A & B
type T = {
red:"apple";
green:"sky";
}