As Const
-
[TypeScript] ReturnType, const개발/Javascript 2022. 7. 13. 01:56
type Color = 'red' | 'yellow' | 'orange'; // const color: Color = 'white' // error const color: Color = 'yellow'; // ok color 변수의 타입은 Color입니다. string이 아닙니다. 모든 string 값을 넣을 수 있는 것이 아니라 'red', 'yellow', 'orange'만 넣을 수 있는 타입입니다. 리덕스에서 보통 액션 생성 함수를 사용하는데요. 다음 코드는 반환값이 어떻게 추론될까요. const TEST = 'test'; const fn = () => ({type: TEST}) string으로 되어 버립니다. 의도한 것이라면 상관 없지만 리덕스에서 액션 생성 함수를 사용할 때는 string 타입이..