UNPKG
civ7-modding-tools
Version:
latest (1.3.0)
1.3.0
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.2
1.2.1
1.2.0
Mod generation tool for Civilization 7.
github.com/izica/civ7-modding-tools
izica/civ7-modding-tools
civ7-modding-tools
/
src
/
types
/
TPartialRequired.ts
2 lines
(1 loc)
•
101 B
text/typescript
View Raw
1
2
export type TPartialRequired
<
T
,
K extends keyof
T
>
=
Partial
<
T
>
&
{
[
P
in
K
]
-
?
:
NonNullable
<
T
[
P
]
>
}
;