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
- CSS
- 레이아웃쪼개기
- 커스텀
- utilty type
- TSDoc
- React.js
- react
- Chart.js
- const 단언문
- 타입스크립트
- 공통컴포넌트
- click and drag
- 타입좁히기
- NonNullable
- typescript
- vue.js
- 누구나 자료구조와 알고리즘
- 제네릭
- React Native
- 2022
- 성능최적화
- 리액트
- 티스토리꾸미기
- JS console
- returnType
- javascript
- 개발콘텐츠
- 폰트적용하기
- 반복줄이기
- reactjs
Archives
- Today
- Total
목록partial (1)
몽땅뚝딱 개발자
[TypeScript] Utility types - Partial, Record, NonNullable
◽ Partial 특정 타입의 부분 집합을 정의할 때 사용한다. interface UserInfo { name: string age: number } type User = Partial const user1: User = {} const user2: User = { name: 'hi' } const user3: User = { name: 'hello', age: 20000 } ◽ Record 타입스크립트에서는 인덱스 시그니처(Index Signature)는 대괄호로 객체를 접근하는 방법을 사용할 수 있다. 인덱스 시그니처의 경우 문자열 리터럴을 key로 사용하지 못하지만, Record는 가능하다. 예제 1. // 1. 인덱스 시그니처를 사용했을 때 type UserInfo = { [name: string..
Development/Typescript
2022. 11. 23. 15:43