👾오류파티

[Typescript] "Conversion of type- " 오류가 발생했을 때

v햅삐니스v 2022. 4. 19. 01:28

 

react+recoil+typescript에 enum을 사용하다가 Conversion of type-  오류가 발생했습니다.

 

 

https://www.codegrepper.com/code-examples/javascript/Conversion+of+type+to+type+may+be+a+mistake+because+neither+type+sufficiently+overlaps+with+the+other.+If+this+was+intentional%2C+convert+the+expression+to+%27unknown%27+first.

 

Conversion of type to type may be a mistake because neither type sufficiently overlaps with the other. If this was intentional,

myRating as unknown as number

www.codegrepper.com

해당 사이트를 참고하여

 

 

이렇게 수정해주니 오류없이 잘 작동됩니다

 

 

추가)

앞에 붙는 +가 string을 number로 변경해줘서 이렇게도 가능합니다

예시) +"356" => 356