UNPKG
yantd
Version:
latest (0.1.6)
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
React component library
nieyafei/project-practice
yantd
/
dist
/
components
/
_util
/
type.d.ts
3 lines
(2 loc)
•
146 B
TypeScript
View Raw
1
2
3
export
declare
type
Omit
<T, K
extends
keyof T> =
Pick
<T,
Exclude
<keyof T, K>>;
export
declare
const
tuple
: <T
extends
string
[]>
(
...
args
: T
) =>
T;