[[String literal type]] 로 새로운 타입([[String literal type]])을 만들어 내는 도구 ```typescript type Foo = "product" | "comment"; type Boo = "id"; type Baz = `${Foo}_${Boo}`; // "product_id" | "comment_id" ``` --- 참조 강의: https://inf.run/FVDi