[typescript] 인덱스 시그니처 (index signature) 타입을 정의할 때, 키(key)에 커스텀 타입 (custom type, literal, generic)을 매핑하는 방법 (Record)

By | 5월 2, 2023
type 회원구분 = '정회원' | '준회원';

export const 숨길메뉴들: Record<회원구분, string[]> = {
  정회원: [
    '0001',
  ],
  준회원: [],
};
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments