UNPKG
typescript-types
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Typescript typings
github.com/krewi1/typescript-typings
typescript-types
/
types
/
tupple
/
last.ts
8 lines
(6 loc)
•
180 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
HasTail
,
Tail
}
from
"./tail"
;
import
{
Head
}
from
"./head"
;
export
type
Last
<T
extends
any
[]> = {
0
:
Last
<
Tail
<T>>;
1
:
Head
<T>; }[
HasTail
<T>
extends
true
?
0
:
1
];