Skip to content

Commit

Permalink
fix: DeepPartial changeset, text 수정 (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssi02014 authored Jan 10, 2025
1 parent 2ecdfd1 commit 6416a1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .changeset/few-badgers-dance.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@modern-kit/types': minor
---

feat(types): DeeoEqual 유틸 타입 추가 - @ssi02014
feat(types): DeepPartial 유틸 타입 추가 - @ssi02014
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('DeepPartial', () => {
};
}

it('DeepPartial 타입은 중첩된 객체의 모든 속성을 선택적으로 만들어줍니다.', () => {
it('중첩된 객체의 모든 속성을 선택적으로 만들어야 합니다.', () => {
const user: DeepPartial<User> = {
name: 'John',
age: '20',
Expand Down
2 changes: 1 addition & 1 deletion packages/types/src/DeepPartial/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @description 객체의 모든 속성을 선택적(optional)으로 만드는 타입
* @description 객체의 모든 속성을 선택적(optional)으로 만드는 유틸 타입입니다.
* 중첩된 객체의 경우에도 재귀적으로 모든 속성을 선택적으로 변환합니다.
*
* @template {Record<PropertyKey, any>} T - 변환할 객체 타입
Expand Down

0 comments on commit 6416a1c

Please sign in to comment.