Template Literal Type? Template literal types build on string literal types, and have the ability to expand into many strings via unions. 기존 TypeScript의 String Literal Type을 기반으로 새로운 타입만들기. 타입스크립트 4.1에 들어서 새롭게 도입되었다고 한다. 간단한 예시로 알아보자. type World = "world"; type Greeting = `hello ${World}`; 기존의 World라는 타입을 기반으로 새로운 타입 Greeting을 쉽게 만들 수 있다. Union Type type Citrus = "lemon" | "orange"; type Berry =..