728x90 반응형 맵드 타입(mapped type)1 [TypeScript] 타입 별칭(Type Alias), 인터섹션 타입 (Intersection Type), 맵드 타입(Mapped type) 타입 별칭(Type Alias)타입 별칭은 새로운 타입을 정의하며, 특정 타입이나 인터페이스를 참조할 수 있는 타입 변수를 의미한다. 📝 타입 별칭(Type Alias) 형태type 별칭 = 타입; 👉 타입 정의type Fruits = { name: string; emoji: string; amount: number;}; 👉 타입 사용 기본 type처럼 변수명 뒤에 : 타입명을 붙여서 선언한다.const pineapple: Fruits = { name: 'pineapple', emoji: '🍍', amount: 3,};다음과 같이 빈 객체를 해당 타입으로 지정하고, 후에 값을 할당할 수도 있다.const coconut = {} as Fruits;coconut.name = '.. 2024. 7. 22. 이전 1 다음 728x90 반응형