TypeScript | ~형식의 매개변수가 포함된 인덱스 시그니처를 찾을 수 없습니다. / 타입스크립트 에러

HN·2023년 1월 18일
0
post-thumbnail
post-custom-banner

컴포넌트는 제대로 렌더링됐는데, vsc에 이런 오류가 떴다🤔




인덱스 시그니처(Index Signature)

모든 타입의 속성의 이름은 모르지만, value의 형태는 알 수 있을 때 사용하는 것으로 가능한 key - value의 타입을 명시할 수 있다.
인덱스 시그니처의 key 타입은 string, number, symbol, 템플릿 문자열만 가능.


형식

interface Example {
	[key: string]: number;
  	[key: number]: string | boolean
  	[key: boolean]: string // 에러
}



해결방법

post-custom-banner

0개의 댓글