UNPKG
xchange-create
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Create Xchange Project
github.com/x7finance/xchange-create
x7finance/xchange-create
xchange-create
/
templates
/
base
/
packages
/
nextjs
/
types
/
utils.ts
8 lines
(7 loc)
•
188 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
type
Tuple
< T,
MaxLength
extends
number
=
10
,
Current
extends
T[] = [], > =
Current
[
"length"
]
extends
MaxLength
?
Current
:
Current
|
Tuple
<T,
MaxLength
, [T, ...
Current
]>