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
- 누구나 자료구조와 알고리즘
- 폰트적용하기
- NonNullable
- vue.js
- react
- React Native
- reactjs
- 리액트
- 타입스크립트
- TSDoc
- 티스토리꾸미기
- utilty type
- 2022
- 제네릭
- 공통컴포넌트
- 커스텀
- React.js
- Chart.js
- click and drag
- JS console
- 성능최적화
- 레이아웃쪼개기
- const 단언문
- CSS
- 반복줄이기
- returnType
- javascript
- 개발콘텐츠
- 타입좁히기
- typescript
Archives
- Today
- Total
목록omit (1)
몽땅뚝딱 개발자
[TypeScript] Utility types - Exclude, Extract, Omit, Pick
◽ Exclude T에 지정된 타입들 중 U에 나열된 타입들은 제외하여 정의한다. /** * Exclude from T those types that are assignable to U */ type Exclude = T extends U ? never : T 예제 1. type TChar = "a" | "b" | "c" | "d" type T00 = Exclude; // "b" | "d" 예제 2. interface IUser { name: string age: number birth: Date death: Date } type User = Exclude // type User = "name" | "age" | "birth" ◽ Extract // Extract: T에 지정된 타입들 중 U에 나열된 타..
Development/Typescript
2022. 11. 12. 18:33