TypeScript의 타입 별칭 (Type Aliases) - 타입 별칭은 타입의 새로운 이름을 만드는 것으로 새로운 이름으로 기존의 타입을 참조하는 것을 의미한다. 타입 별칭을 이용하여 타입의 새로운 이름을 만들 때 키워드 type 을 사용하여 작성한다.type MyString = string;let str1: string = 'hello!';// string 타입처럼 사용할 수 있습니다.let str2: MyString = 'hello world!'; type Person = { id: number; name: string; email: string;}//Commentary 인터페이스에서 Person 타입을 참조하고 있습니다.interface Commentary { id: number; co..