Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- KDT 프로그래머스
- 리스트 렌더링
- vue 이벤트 수신
- vue 지역 컴포넌트
- flex
- intersection opserver
- Spacer
- SCSS import
- vue mixin
- postcss
- react next
- nextjs사용법
- git 같은계정 다른 컴퓨터
- SCSS extend
- 다른컴퓨터에서 git사용
- SCSS forward
- 프로그래머스 프론트엔드 데브코스
- 폼 입력 바인딩
- netlify redirect
- 이벤트 수식어
- SCSS use
- KDT 프로그래머스 데브코스 프론트엔드
- 프로그래머스 K_Digital Training
- Vue
- 프로그래머스 데브코스
- vuex map
- 쌓임맥락
- 프로그래머스 데브코스 프론트엔드
- 리액트
- 고양이 사진 검색기
Archives
- Today
- Total
혼자 적어보는 노트
[TypeScript] String key로 객체에 접근하기 본문
String타입의 키로 객체에 접근하려면
type에러가 생기는데 인덱스 시그니처를 선언해주면 해결할 수 있다.
interface buttonStyleInterface {
[key: string]: string;
}
그런데 여기서 key값에 type을 주고 싶어서 아래와 같이 작성하면 type에러가 발생한다,.
interface buttonStyleInterface {
[key: ButtonTypes]: string;
// An index signature parameter type cannot be a literal type or generic type. Consider using a mapped object type instead
}
인덱스 시그니처의 타입으로는 union type을 사용할 수 없다.
Mapped object type을 사용해야한다.
✅ 해결
type ButtonTypes = 'primary' | 'gray' |'darkGray';
type buttonStyleType = {
[key in ButtonTypes]: string;
}
'Typescript' 카테고리의 다른 글
[TypeScript] 객체의 key를 type으로 분리하기 (0) | 2022.08.01 |
---|---|
타입스크립트 프로그래밍 - 4장 (0) | 2022.07.14 |
[Typescript] Type Guard로 타입 좁히기 (0) | 2022.07.13 |
[Typescript] React에서 Typescript 사용하기 (0) | 2022.05.24 |
[TypeScript] 제네릭(Generics) (0) | 2022.05.23 |
Comments