찾게된 이유 & 해결
...
// 에러 상황
data: data?.map(price => Number(price.close)),
...
// 발생된 에러
TS2769: No overload matches this call.
Overload 1 of 2, '(props: Props | Readonly<Props>): ReactApexChart', gave the following error.
Type '{ name: string; data: number[] | undefined; }' is not assignable to type 'number'.
Overload 2 of 2, '(props: Props, context: any): ReactApexChart', gave the following error.
Type '{ name: string; data: number[] | undefined; }' is not assignable to type 'number'.
// 해결 방법
data: data?.map(price => Number(price.close)) as number[]
객체에 위와 같이 값을 변환해서 넣었는데, typeError 가 발생했었다. as 문법을 활용해서 해결했다.
as문법을 알아보니까 좀 더 구체적인 타입을 지정할 수 있다고 한다. 공식문서를 보면, 컴파일러에게 힌트를 줘서 해결하는 형태이다.
더 구체적 or 덜 구체적으로는 변환이 가능하다. 그러나 아예 관계 없는 타입으로는 as 문법을 사용하는 것이 불가능하다.
유사한 활용 예
const myCanvas = document.getElementById("main_canvas") as HTMLCanvasElement;
const myCanvas = <HTMLCanvasElement>document.getElementById("main_canvas"); // tsx에서는 제외
const x = "hello" as number; // Error
// Conversion of type 'string' to type 'number' may be a mistake
// because neither type sufficiently overlaps with the other.
// If this was intentional, convert the expression to 'unknown' first.
const a = (expr as any) as T; // 가능
Keyword
Type Assertions (타입 단언 or 타입 강제 선언 정도로 이해)
참고
https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#type-assertions
Documentation - Everyday Types
The language primitives.
www.typescriptlang.org
[타입스크립트] 'is', 'as' 문법 정리
타입스크립트 초보자의 'is', 'as' 문법 정리
velog.io
'React & TypeScript > TypeScript' 카테고리의 다른 글
[ESLint] naming-convention 설정방법 (0) | 2023.11.23 |
---|---|
[TypeScript] GENERIC Basic (그래서, T야?) (0) | 2023.08.22 |
비공개 - [TypeScript] 활용법 Basic (이 건 뭐고, 저 건 또 뭐야? 싶을 때 보는) (0) | 2023.07.10 |
[React / TypeScript] props를 구조분해할당으로 전달받을 때 Type Error (TS2322) (0) | 2022.12.20 |
[TypeScript] Tip - 자동으로 Type 추출 (0) | 2022.12.19 |
[React / TypeScript / API] API 구조 작성은 이렇게 한다. (0) | 2022.12.16 |
[React / TypeScript] interface로 타입 정의 중 발생한 이슈 (useParams, Params) - TS2344 (0) | 2022.12.09 |