-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6932071
commit 61ec34f
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import type { ObjectPlain } from './ObjectPlain' | ||
|
||
/** | ||
* @file Types - Overwrite | ||
* @module types/Overwrite | ||
*/ | ||
|
||
/** | ||
* Replaces the properties of `T` with those of `T1`. | ||
* | ||
* @template T1 - Object to update | ||
* @template T2 - Object to update with | ||
*/ | ||
export type Overwrite<T extends ObjectPlain, T1 extends ObjectPlain> = { | ||
[K in keyof T]: K extends keyof T1 ? T1[K] : T[K] | ||
} & {} |