Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: DeepPartial changeset, text 수정 #669

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading