특정 문자열 자체가 타입이 되는 것 ```typescript let a: "hello" = "hell"; // error 🚫 let status: 'pending' | 'approved' | 'rejected'; ``` 여기서 `hello`, `'pending' | 'approved' | 'rejected'` 자체가 타입이 된다. --- 참조 강의: https://inf.run/FVDi