Translate

[TypeScript] TS90010 Type A is not assignable to Type A 이슈





Framework: Angular 4


HTTP 요청에 파라미터를 추가하여 날리기 위해 URLSearchParams 에서 AppendAll 메소드를 사용하는데 아래와 같이 오류가 발생을 했다.
1004lucifer

1004lucifer

TS90010:Type 'URLSearchParams' is not assignable to type 'URLSearchParams'. Two different types with this name exist, but they are unrelated. Property 'rawParams' is missing in type 'URLSearchParams'.

(두개의 URLSearchParams 가 실은 같은 타입이 아니라는 이야기..)





지난번 기술한 이슈와 동일한 원인이며 해결방법 또한 동일하다.
(아래의 링크를 참조)

- [TypeScript] TS2345 Argument of type A is not assignable to parameter of type A 이슈


댓글