UNPKG
tstype-schema
Version:
latest (1.1.0)
1.1.0
1.0.0
TSType schema declarations
github.com/k8w/tstype
k8w/tstype-schema
tstype-schema
/
src
/
extraTypes
/
Overwrite.d.ts
2 lines
(1 loc)
•
72 B
TypeScript
View Raw
1
2
declare type Overwrite
<
T
,
U
>
=
Pick
<
T
,
Exclude
<
keyof
T
,
keyof U
>
>
&
U;