Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 243f861

Browse files
committed
docs: Prettify type
1 parent 7fda71b commit 243f861

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

docs/api/types/prettify/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Prettify
2+
3+
## 개요
4+
5+
복잡한 객체 유형을 하나의 객체 유형으로 변환합니다.
6+
7+
```ts
8+
type Prettify<T> = { [K in keyof T]: T[K] } & {};
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Prettify
2+
3+
## 개요
4+
5+
복잡한 객체 유형을 하나의 객체 유형으로 변환합니다.
6+
7+
```ts
8+
type Prettify<T> = { [K in keyof T]: T[K] } & {};
9+
```

0 commit comments

Comments
 (0)