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
/
Omit.d.ts
2 lines
(1 loc)
•
57 B
TypeScript
View Raw
1
2
declare type Omit
<
T
,
K
>
=
Pick
<
T
,
Exclude
<
keyof
T
,
K
>
>
;