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 | 31 |
Tags
- React Native
- 타입좁히기
- JS console
- vue.js
- const 단언문
- Chart.js
- utilty type
- 폰트적용하기
- TSDoc
- javascript
- 커스텀
- 누구나 자료구조와 알고리즘
- react
- 성능최적화
- typescript
- click and drag
- 제네릭
- 2022
- returnType
- reactjs
- React.js
- 타입스크립트
- 레이아웃쪼개기
- 개발콘텐츠
- 티스토리꾸미기
- 공통컴포넌트
- 리액트
- 반복줄이기
- NonNullable
- CSS
Archives
- Today
- Total
몽땅뚝딱 개발자
[TypeScript] Utility types - Readonly, ReturnType 본문
Development/Typescript
[TypeScript] Utility types - Readonly, ReturnType
레오나르도 다빈츠 2022. 11. 19. 14:14
◽ Readonly
- Readonly는 속성을 읽기만 가능하도록 설정하여 매개변수가 변경되는 것을 방지한다.
- 변경이 발생하는 코드를 쉽게 찾을 수 있으며, 변경하면서 발생하는 오류를 방지할 수 있다.
- 단, Readonly는 얕게 동작하므로 깊은(deep) readonly 타입이 필요하다면 ts-essentials에 DeepReadonly 제네릭을 사용하면 된다.
interface Outer {
inner: {
x: number;
}
}
// 이렇게도 적을 수 있다.
// const o: { readonly Outer }
const o: Readonly<Outer> = { inner: { x: 0 } };
// 할당할 수 없다.
o.inner = { x: 1 };
// 하지만 이건 가능한데, readonly가 'inner'에 적용됐기 때문이다.
// x는 readonly가 적용되지 않는다.
o.inner.x = 1;
◽ ReturnType
함수의 리턴문을 type으로 생성한다.
📄 예제
const getUserInfo = (userId: string) => {
const userName = 'vinch'
const age = 10000
const height = 250
const weight = 15000
return {
userId,
userName,
age,
height,
weight,
}
}
type userInfo = ReturnType<typeof getUserInfo>
// 이렇게 사용할 수 있다!
const user: userInfo = {
userId: '123',
userName: 'vin',
age: 5000,
height: 300,
weight: 9999,
}
출처
댄 밴터캄, 이펙티브 타입스크립트 (프로그래밍 인사이트, 2021)
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Typescript' 카테고리의 다른 글
[TypeScript] 타입 좁히기 (0) | 2022.11.20 |
---|---|
[TypeScript] as const / const 단언문 (0) | 2022.11.20 |
[TypeScript] interface와 type의 차이 (0) | 2022.11.14 |
[TypeScript] 타입 선언과 타입 단언 (0) | 2022.11.13 |
[TypeScript] Utility types - Exclude, Extract, Omit, Pick (0) | 2022.11.12 |
Comments