반응형
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
- javascript
- 프로그래머스
- 백준
- 쉬운 문제
- BFS
- 타입 챌린지
- 타입스크립트
- 레벨 1
- HTTP
- 크롤링
- 그래프
- 소켓
- dfs
- 수학
- HTTP 완벽 가이드
- Algorithm
- type challenge
- Node.js
- Nestjs
- dp
- 가천대
- 자바스크립트
- socket
- ip
- 문자열
- typescript
- 프로그래머스 레벨 2
- Crawling
- 알고리즘
- TCP
Archives
- Today
- Total
kakasoo
Readonly type 구현 본문
반응형
Implement a generic MyReadonly2<T, K> which takes two type argument T and K.
K specify the set of properties of T that should set to Readonly. When K is not provided, it should make all properties readonly just like the normal Readonly.
For example,
interface Todo {
title: string
description: string
completed: boolean
}
const todo: MyReadonly2<Todo, 'title' | 'description'> = {
title: "Hey",
description: "foobar",
completed: false,
}
todo.title = "Hello" // Error: cannot reassign a readonly property
todo.description = "barFoo" // Error: cannot reassign a readonly property
todo.completed = true // OK
풀이법
type MyReadonly2<T, K extends keyof T = keyof T> = {
readonly [key in K]: T[key];
} & {
[key in keyof Omit<T, K>]: T[key];
}
- - type MyReadOnly2<T, K extends keyof T = keyof T> = { : 타입 파라미터를 객체 T와 T의 키로 이루어진 K로 정의한다.
- - & : key 부분에 대해서는 readonly를 선택적으로 줄 수 없기 때문에, readonly인 객체와 그렇지 않은 객체의 인터섹션 타입으로 구현.
- - { readonly [key in K]: T[key] } : readonly로 정의되는 부분은 명시되어 있는 K로 이루어진 프로퍼티들이 된다.
- - { pkey in keyof Omit<T, K>]: T[key] } : readonly가 아닌 부분은 명시되지 않은 부분으로 이루어진 키로 된 프로퍼티다.
이상의 논리를 따라가면 MyReadonly를 이해할 수 있다.
반응형
'프로그래밍 > TypeScript' 카테고리의 다른 글
앞 글자가 대문자인 문자열 타입 정의하기 (0) | 2023.02.19 |
---|---|
TupleToUnion 타입 정의하기 (0) | 2023.02.17 |
infer R 타입을 이용한 GetReturnType (0) | 2023.02.12 |
Omit type 정의하기 & Type level에서 as문 사용하기 (0) | 2023.02.10 |
타입 레벨에서 포함 관계를 검사하는 Includes 타입 구현하기 (0) | 2023.02.09 |